/* ============================================================
   TW BRAND GROUP — Site público v2
   Estética alinhada ao site antigo: premium quente e minimalista.
   Paleta: creme / marrom / dourado. Fontes: Inter + Playfair Display.
   Namespace isolado: .twv2-  (não conflita com site.css legado)
   Mobile-first.
   ============================================================ */

:root {
    --twv2-dark: #141009;
    --twv2-dark-2: #1e1712;
    --twv2-brown: #3d1f0a;
    --twv2-brown-2: #5c2e0f;
    --twv2-gold: #c9963a;
    --twv2-gold-light: #e8b864;
    --twv2-gold-dim: #a07a2e;
    --twv2-cream: #faf7f2;
    --twv2-cream-2: #f0e9df;
    --twv2-white: #ffffff;
    --twv2-gray: #8c8278;
    --twv2-text: #1e1712;

    --twv2-serif: "Playfair Display", Georgia, serif;
    --twv2-sans: "Inter", system-ui, -apple-system, sans-serif;
    --twv2-max: 1280px;
    --twv2-px: clamp(1.5rem, 5vw, 6rem);

    --twv2-radius-sm: 4px;
    --twv2-radius-md: 10px;
    --twv2-radius-lg: 18px;
    --twv2-radius-xl: 28px;
    --twv2-shadow: 0 2px 18px rgba(13, 10, 7, 0.07);
    --twv2-shadow-hover: 0 8px 32px rgba(13, 10, 7, 0.12);
    --twv2-shadow-gold: 0 4px 20px rgba(201, 150, 58, 0.20);
    --twv2-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.twv2 {
    margin: 0;
    background: var(--twv2-cream);
    color: var(--twv2-text);
    font-family: var(--twv2-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.twv2 img { max-width: 100%; display: block; }
.twv2 a { color: inherit; text-decoration: none; }
.twv2 ul { list-style: none; margin: 0; padding: 0; }

.twv2-wrap { width: 100%; max-width: var(--twv2-max); margin: 0 auto; padding: 0 var(--twv2-px); }

.twv2-section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.twv2-section .twv2-wrap { padding: 0 var(--twv2-px); }
.twv2-section--alt { background: var(--twv2-white); }

/* --- Tipografia / utilitários --- */
.twv2-eyebrow {
    display: inline-block;
    font-size: 0.69rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--twv2-gold-dim);
    font-weight: 600;
    margin: 0 0 0.9rem;
}
.twv2-title {
    font-family: var(--twv2-serif);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--twv2-text);
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 2.85rem);
}
.twv2-lead { color: var(--twv2-gray); font-size: 1.05rem; line-height: 1.7; max-width: 580px; }
.twv2-center { text-align: center; }
.twv2-center .twv2-lead { margin-left: auto; margin-right: auto; }
.twv2-gold { color: var(--twv2-gold-dim); }

/* --- Botões (pílula dourada, igual ao site antigo) --- */
.twv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: var(--twv2-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.twv2-btn--gold { background: var(--twv2-gold); color: var(--twv2-dark); }
.twv2-btn--gold:hover { background: var(--twv2-gold-light); transform: translateY(-1px); box-shadow: var(--twv2-shadow-gold); }
.twv2-btn--ghost { background: transparent; color: var(--twv2-text); border-color: var(--twv2-gold-dim); }
.twv2-btn--ghost:hover { background: var(--twv2-gold); color: var(--twv2-dark); border-color: var(--twv2-gold); }

/* Botões sobre fundos escuros (hero, pagehead, faixa CTA) */
.twv2-hero .twv2-btn--ghost,
.twv2-pagehead .twv2-btn--ghost,
.twv2-cta-band .twv2-btn--ghost {
    color: var(--twv2-cream);
    border-color: rgba(245, 239, 230, 0.45);
}
.twv2-hero .twv2-btn--ghost:hover,
.twv2-pagehead .twv2-btn--ghost:hover,
.twv2-cta-band .twv2-btn--ghost:hover {
    background: var(--twv2-cream);
    color: var(--twv2-dark);
    border-color: var(--twv2-cream);
}

/* ============================================================
   NAVBAR (transparente -> escura ao rolar, igual ao antigo)
   ============================================================ */
.twv2-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 86px;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.twv2-nav.scrolled {
    height: 70px;
    background: rgba(20, 16, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(201, 150, 58, 0.12);
}
.twv2-nav-inner {
    width: 100%;
    max-width: var(--twv2-max);
    margin: 0 auto;
    padding: 0 var(--twv2-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.twv2-logo { display: flex; flex-direction: row; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.twv2-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); transition: height 0.4s ease; }
.twv2-nav.scrolled .twv2-logo img { height: 27px; }
.twv2-logo-text { display: flex; align-items: center; }
.twv2-logo-text b { font-family: var(--twv2-serif); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.03em; color: var(--twv2-cream); white-space: nowrap; }
.twv2-logo-text b sup { font-size: 0.5em; vertical-align: super; }

.twv2-nav-links { display: none; align-items: center; gap: clamp(0.75rem, 1.2vw, 1.8rem); min-width: 0; }
.twv2-nav-links a { position: relative; white-space: nowrap; font-size: clamp(0.68rem, 0.4vw + 0.55rem, 0.8rem); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245, 239, 230, 0.72); transition: color 0.3s; }
.twv2-nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; margin: 0 auto; width: 0; height: 1px; background: var(--twv2-gold); transition: width 0.35s var(--twv2-ease); }
.twv2-nav-links a:hover, .twv2-nav-links a.active { color: var(--twv2-cream); }
.twv2-nav-links a:hover::after, .twv2-nav-links a.active::after { width: 14px; }

.twv2-nav-cta { display: none; align-items: center; gap: clamp(0.6rem, 0.9vw, 1.2rem); flex-shrink: 0; }
.twv2-nav-client {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(245, 239, 230, 0.85) !important;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.twv2-nav-client:hover {
    color: var(--twv2-gold) !important;
}
.twv2-nav-client i {
    font-size: 0.85rem;
    color: var(--twv2-gold);
}
.twv2-btn--sm { padding: 0.55rem 1.3rem; font-size: 0.78rem; }

/* Seletor de idioma */
.twv2-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.twv2-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--twv2-cream);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.twv2-lang-btn img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.twv2-lang-btn:hover,
.twv2-lang.open .twv2-lang-btn {
    background: rgba(201, 150, 58, 0.12);
    border-color: var(--twv2-gold);
    color: var(--twv2-gold-light);
}
.twv2-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    background: rgba(13, 10, 7, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(201, 150, 58, 0.25);
    border-radius: 14px;
    min-width: 170px;
    padding: 8px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 150, 58, 0.1);
    z-index: 9999;
}
.twv2-lang.open .twv2-lang-menu { display: block; }
.twv2-lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.75) !important;
    border-radius: 8px;
    transition: all 0.15s ease;
}
.twv2-lang-menu a:hover {
    background: rgba(201, 150, 58, 0.15);
    color: var(--twv2-cream) !important;
}
.twv2-lang-menu a.active {
    background: rgba(201, 150, 58, 0.25);
    color: var(--twv2-gold-light) !important;
    border: 1px solid rgba(201, 150, 58, 0.3);
}
.twv2-lang-menu img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Hambúrguer */
.twv2-burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.twv2-burger span { width: 24px; height: 2px; background: var(--twv2-cream); transition: 0.3s var(--twv2-ease); }
.twv2-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.twv2-burger.active span:nth-child(2) { opacity: 0; }
.twv2-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.twv2-mobile {
    position: fixed; inset: 0; z-index: 999;
    background: var(--twv2-dark);
    transform: translateX(100%); transition: transform 0.45s var(--twv2-ease);
    display: flex; flex-direction: column; justify-content: center;
    padding: 40px; gap: 6px;
}
.twv2-mobile.open { transform: translateX(0); }
.twv2-mobile a { font-family: var(--twv2-serif); font-weight: 700; font-size: 1.6rem; padding: 10px 0; color: var(--twv2-cream); border-bottom: 1px solid rgba(201, 150, 58, 0.12); }
.twv2-mobile a:hover { color: var(--twv2-gold-light); }
.twv2-mobile a.twv2-mobile-client {
    font-family: var(--twv2-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--twv2-gold) !important;
    border-bottom: 1px solid rgba(201, 150, 58, 0.25);
}
.twv2-mobile a.twv2-mobile-client:hover {
    color: var(--twv2-gold-light) !important;
}
.twv2-mobile a.twv2-mobile-client i { color: var(--twv2-gold); }
.twv2-mobile-cta { margin-top: 28px; }

/* ============================================================
   HERO (escuro com imagem + gradiente marrom, igual ao antigo)
   ============================================================ */
.twv2-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background-color: var(--twv2-dark);
}
.twv2-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.twv2-hero-media video, .twv2-hero-media img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; animation: twv2-ken 18s ease-out both; }
@keyframes twv2-ken { from { transform: scale(1.16); } to { transform: scale(1.04); } }
.twv2-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(150deg,
        rgba(20, 16, 9, 0.82) 0%,
        rgba(30, 20, 10, 0.60) 55%,
        rgba(61, 31, 10, 0.38) 100%);
}
.twv2-hero-content { position: relative; z-index: 2; width: 100%; padding-top: 90px; padding-bottom: 60px; will-change: transform, opacity; }
.twv2-hero .twv2-eyebrow { color: var(--twv2-gold-light); }
.twv2-hero h1 {
    font-family: var(--twv2-serif);
    font-weight: 700;
    font-size: clamp(2.2rem, 6.5vw, 4.4rem);
    line-height: 1.1; letter-spacing: -0.015em;
    color: var(--twv2-cream);
    margin: 0 0 1.5rem; max-width: 17ch;
}
.twv2-hero .twv2-lead { color: rgba(245, 239, 230, 0.82); font-size: clamp(1rem, 2.5vw, 1.2rem); max-width: 540px; margin-bottom: 2.2rem; }
.twv2-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.twv2-hero-scroll {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 2; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: rgba(245, 239, 230, 0.6); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.twv2-hero-scroll::after { content: ""; width: 1px; height: 42px; background: linear-gradient(var(--twv2-gold), transparent); animation: twv2drop 1.8s var(--twv2-ease) infinite; }
@keyframes twv2drop { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

/* ============================================================
   KPIs / TW EM NÚMEROS
   ============================================================ */
.twv2-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.twv2-kpi { background: var(--twv2-white); border: 1px solid rgba(224, 214, 200, 0.6); border-radius: var(--twv2-radius-lg); padding: 2.2rem 1.2rem; text-align: center; box-shadow: var(--twv2-shadow); transition: transform 0.4s var(--twv2-ease), box-shadow 0.4s var(--twv2-ease), border-color 0.4s; }
.twv2-kpi:hover { transform: translateY(-3px); box-shadow: var(--twv2-shadow-hover); border-color: rgba(201, 150, 58, 0.3); }
.twv2-kpi b { font-family: var(--twv2-serif); display: block; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--twv2-gold-dim); font-weight: 700; line-height: 1; }
.twv2-kpi span { display: block; margin-top: 0.65rem; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--twv2-gray); font-weight: 600; }

/* ============================================================
   PILARES / UNIVERSO DE MARCAS
   ============================================================ */
.twv2-pillars { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 3rem; }
.twv2-pillar {
    position: relative; border: 1px solid rgba(224, 214, 200, 0.55);
    background: var(--twv2-white); padding: 2.6rem 2.2rem; border-radius: var(--twv2-radius-lg);
    box-shadow: var(--twv2-shadow);
    transition: transform 0.45s var(--twv2-ease), box-shadow 0.45s var(--twv2-ease), border-color 0.35s;
}
.twv2-pillar:hover { transform: translateY(-5px); box-shadow: var(--twv2-shadow-hover); border-color: rgba(201, 150, 58, 0.25); }
.twv2-pillar i { font-size: 1.5rem; color: var(--twv2-gold-dim); }
.twv2-pillar h3 { font-family: var(--twv2-serif); font-size: 1.6rem; font-weight: 700; margin: 1rem 0 0.8rem; color: var(--twv2-text); }
.twv2-pillar p { color: var(--twv2-gray); }
.twv2-pillar ul li { color: var(--twv2-gray); padding: 0.45rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--twv2-cream-2); }
.twv2-pillar ul li:last-child { border-bottom: 0; }

/* Grade de marcas (logos) */
.twv2-brands { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 2.5rem; }
.twv2-brand {
    background: var(--twv2-white); border: 1px solid var(--twv2-cream-2); border-radius: var(--twv2-radius-md);
    aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; padding: 1.4rem;
    box-shadow: var(--twv2-shadow);
    transition: transform 0.35s var(--twv2-ease), box-shadow 0.35s var(--twv2-ease);
}
.twv2-brand:hover { transform: translateY(-4px); box-shadow: var(--twv2-shadow-hover); }
.twv2-brand img { max-height: 60px; width: auto; object-fit: contain; }
.twv2-brand b { font-family: var(--twv2-serif); font-size: 1.25rem; font-weight: 700; color: var(--twv2-brown); }

/* ============================================================
   CATEGORIAS DA HOME — quadro premium com tiles
   ============================================================ */
.twv2-catstage {
    position: relative;
    border-radius: var(--twv2-radius-xl);
    overflow: hidden;
    padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1.4rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, var(--twv2-dark) 0%, var(--twv2-brown) 60%, var(--twv2-dark-2) 100%);
    box-shadow: var(--twv2-shadow);
    will-change: transform;
    transition: none;
}
.twv2-catstage-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.twv2-catstage-media video { width: 100%; height: 130%; object-fit: cover; position: absolute; top: -15%; left: 0; will-change: transform; }
.twv2-catstage-shade {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(20,16,9,0.65) 0%, rgba(20,16,9,0.48) 40%, rgba(20,16,9,0.72) 100%);
}
.twv2-catstage-inner { position: relative; z-index: 2; }

/* Intro sobre o quadro escuro: texto claro */
.twv2-catstage .twv2-eyebrow { color: var(--twv2-gold-light); }
.twv2-catstage .twv2-title { color: var(--twv2-cream); }
.twv2-catstage .twv2-lead { color: rgba(245, 239, 230, 0.82); }

.twv2-catgrid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3rem); }

.twv2-cat {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 360px;
    aspect-ratio: 4 / 5;
    border-radius: var(--twv2-radius-lg);
    overflow: hidden;
    /* Transparente como os cards de marcas, com desfoque de fundo */
    background: rgba(var(--cat-bg-color, 255, 255, 255), 0.12);
    border: 1px solid rgba(201, 150, 58, 0.20);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    /* transform/opacity são controlados via scroll com rise animado */
    transition: background 0.4s var(--twv2-ease), border-color 0.4s var(--twv2-ease), box-shadow 0.4s var(--twv2-ease);
    will-change: transform, opacity;
}
/* Camada da foto de fundo — maior que o card para parallax sem mostrar bordas */
.twv2-cat-bg {
    position: absolute; left: 0; right: 0; top: -14%; height: 128%; z-index: 0;
    background-size: cover; background-position: center;
    will-change: transform;
}
.twv2-cat:hover {
    background: rgba(var(--cat-bg-color, 255, 255, 255), 0.20);
    border-color: var(--twv2-gold) !important;
    box-shadow: 0 15px 40px rgba(201, 150, 58, 0.15);
}
.twv2-cat-shade {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(13,10,7,0.70) 0%, rgba(13,10,7,0.30) 50%, rgba(13,10,7,0.06) 100%);
}
.twv2-cat-body { position: relative; z-index: 2; width: 100%; padding: 1.8rem 1.6rem; color: var(--twv2-cream); }

/* Linha de acento dourado/marrom */
.twv2-cat-line {
    display: block; width: 46px; height: 3px; margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--twv2-gold-light), var(--twv2-gold-dim));
    border-radius: 2px;
}
.twv2-cat-icon { display: inline-block; font-size: 1.5rem; line-height: 1; color: var(--twv2-gold-light); margin-bottom: 0.7rem; }
.twv2-cat-emoji { font-size: 1.7rem; }
.twv2-cat-title { font-family: var(--twv2-serif); font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; margin: 0 0 0.5rem; color: var(--twv2-cream); }
.twv2-cat-info { color: rgba(245, 239, 230, 0.82); font-size: 0.95rem; margin: 0; }
.twv2-cat-cta {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    color: var(--twv2-gold-light);
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s var(--twv2-ease), transform 0.4s var(--twv2-ease);
}
.twv2-cat:hover .twv2-cat-cta, .twv2-cat:focus-visible .twv2-cat-cta { opacity: 1; transform: none; }

@media (min-width: 720px) {
    .twv2-catgrid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (min-width: 960px) {
    .twv2-catgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .twv2-cat, .twv2-cat::before, .twv2-cat-cta { transition: none; }
    .twv2-cat-cta { opacity: 1; transform: none; }
    .twv2-catstage-media video { display: none; }
}

/* ============================================================
   QR EXPERIENCE
   ============================================================ */
.twv2-qr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 2.8rem; }
.twv2-qr-item { background: var(--twv2-white); border: 1px solid var(--twv2-cream-2); border-radius: var(--twv2-radius-md); padding: 1.6rem 1.1rem; text-align: center; box-shadow: var(--twv2-shadow); }
.twv2-qr-item i { font-size: 1.4rem; color: var(--twv2-gold-dim); }
.twv2-qr-item span { display: block; margin-top: 0.7rem; font-size: 0.85rem; letter-spacing: 0.03em; color: var(--twv2-gray); font-weight: 500; }

/* ============================================================
   STEPS (Private Label)
   ============================================================ */
.twv2-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 2.5rem; counter-reset: step; }
.twv2-step { background: var(--twv2-white); border: 1px solid var(--twv2-cream-2); border-radius: var(--twv2-radius-md); padding: 1.5rem 1.3rem; box-shadow: var(--twv2-shadow); }
.twv2-step::before { counter-increment: step; content: "0" counter(step); font-family: var(--twv2-serif); font-size: 1.5rem; font-weight: 800; color: var(--twv2-gold-dim); display: block; margin-bottom: 0.5rem; }
.twv2-step b { font-size: 0.95rem; letter-spacing: 0.02em; color: var(--twv2-text); }

/* ============================================================
   DISTRIBUIÇÃO GLOBAL
   ============================================================ */
.twv2-markets { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.twv2-market { border: 1px solid rgba(224, 214, 200, 0.65); background: var(--twv2-white); border-radius: 50px; padding: 0.55rem 1.35rem; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--twv2-gray); font-weight: 500; box-shadow: none; cursor: pointer; transition: all 0.3s ease; }
.twv2-market:hover { border-color: var(--twv2-gold); color: var(--twv2-text); }
.twv2-market.active { background: var(--twv2-gold); color: #fff; border-color: var(--twv2-gold); box-shadow: 0 4px 16px rgba(201, 150, 58, 0.35); }
.twv2-map { margin-top: 2.8rem; overflow: visible; background: transparent; will-change: transform; transition: none; }
.twv2-map img { width: 100%; opacity: 0.85; mix-blend-mode: multiply; }

/* SITE-002 — Mapa global de clientes (Leaflet choropleth) */
.twv2-clientmap { position: relative; width: clamp(320px, 52vw, 560px); height: clamp(320px, 52vw, 560px); background: #f5f0e8; border-radius: 50%; overflow: hidden; margin: 0 auto; border: 2px solid rgba(224, 214, 200, 0.7); box-shadow: 0 6px 32px rgba(13, 10, 7, 0.10); transition: border-color 0.4s ease, box-shadow 0.4s ease; }
.twv2-clientmap.continent-active { border-color: var(--twv2-gold); box-shadow: 0 8px 50px rgba(201, 150, 58, 0.3); }
.twv2-map-overlay { position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%); z-index: 600; pointer-events: none; opacity: 0; transition: opacity 0.4s ease; text-align: center; }
.twv2-map-overlay.visible { opacity: 1; }
.twv2-map-overlay-inner { display: inline-block; background: rgba(30, 20, 10, 0.82); backdrop-filter: blur(8px); color: #fff; padding: 0.7rem 1.6rem; border-radius: 50px; font-family: var(--twv2-sans); }
.twv2-map-overlay-count { font-size: 1.6rem; font-weight: 700; color: var(--twv2-gold); }
.twv2-map-overlay-label { font-size: 0.8rem; opacity: 0.85; margin-top: 2px; }
.twv2-clientmap .leaflet-container { background: #f3ece0; font-family: var(--twv2-sans); }
.twv2-clientmap .leaflet-interactive:focus { outline: none; }
.twv2-clientmap-legend {
    background: rgba(255, 255, 255, 0.94); padding: 8px 11px; border-radius: 8px;
    font-size: 11px; color: var(--twv2-text); line-height: 1.5; min-width: 120px;
    box-shadow: 0 2px 10px rgba(13, 10, 7, 0.18);
}
.twv2-map-caption { text-align: center; margin: 0; padding: 12px 16px; font-size: 0.9rem; color: var(--twv2-gray); }

/* ============================================================
   FAIXA CTA / TW JOURNAL (escura, contraste premium)
   ============================================================ */
.twv2-cta-band {
    background: linear-gradient(150deg, #1e1712 0%, #2e1708 60%, #3d1f0a 100%);
    border-top: 1px solid rgba(201, 150, 58, 0.18);
    border-bottom: 1px solid rgba(201, 150, 58, 0.10);
    text-align: center;
}
.twv2-cta-band .twv2-eyebrow { color: var(--twv2-gold-light); }
.twv2-cta-band .twv2-title { color: var(--twv2-cream); }
.twv2-cta-band .twv2-lead { color: rgba(245, 239, 230, 0.78); }
.twv2-cta-band .twv2-btn { margin-top: 1.8rem; }

/* ============================================================
   CONTATO
   ============================================================ */
.twv2-contact { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.8rem; }
.twv2-form { display: grid; gap: 1.1rem; }
.twv2-field label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--twv2-gray); margin-bottom: 0.5rem; font-weight: 600; }
.twv2-field input, .twv2-field select, .twv2-field textarea {
    width: 100%; background: var(--twv2-white); border: 1px solid var(--twv2-cream-2);
    color: var(--twv2-text); padding: 0.85rem 0.9rem; border-radius: var(--twv2-radius-sm); font-family: inherit; font-size: 0.95rem;
}
.twv2-field input:focus, .twv2-field select:focus, .twv2-field textarea:focus { outline: none; border-color: var(--twv2-gold); box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.12); }
.twv2-field textarea { min-height: 130px; resize: vertical; }
.twv2-form-msg { font-size: 0.9rem; padding: 0.5rem 0; }
.twv2-form-msg.ok { color: var(--twv2-gold-dim); font-weight: 600; }
.twv2-form-msg.err { color: #b3402f; }
.twv2-contact-info { background: var(--twv2-white); border: 1px solid var(--twv2-cream-2); border-radius: var(--twv2-radius-lg); padding: 0.5rem 1.4rem; box-shadow: var(--twv2-shadow); }
.twv2-contact-info li { padding: 1rem 0; border-bottom: 1px solid var(--twv2-cream-2); color: var(--twv2-gray); display: flex; gap: 0.9rem; align-items: flex-start; }
.twv2-contact-info li:last-child { border-bottom: 0; }
.twv2-contact-info i { color: var(--twv2-gold-dim); width: 20px; }

/* ============================================================
   FOOTER (escuro, igual ao antigo)
   ============================================================ */
.twv2-footer-map { width: 100%; overflow: hidden; border-bottom: 2px solid rgba(201, 150, 58, 0.2); }
.twv2-footer { background: var(--twv2-dark-2); border-top: 1px solid rgba(201, 150, 58, 0.10); padding: 5rem var(--twv2-px) 2.5rem; }
.twv2-footer .twv2-wrap { padding: 0; }
.twv2-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.twv2-footer h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--twv2-gold); margin: 0 0 1rem; }
.twv2-footer a { display: block; color: rgba(245, 239, 230, 0.65); padding: 0.4rem 0; font-size: 0.92rem; transition: color 0.25s; }
.twv2-footer a:hover { color: var(--twv2-cream); }
.twv2-footer-brand b { font-family: var(--twv2-serif); font-size: 1.4rem; font-weight: 800; color: var(--twv2-cream); }
.twv2-footer-brand p { color: rgba(245, 239, 230, 0.6); margin: 0.8rem 0 0; font-size: 0.92rem; max-width: 320px; }
.twv2-social { display: flex; gap: 0.9rem; margin-top: 1.2rem; }
.twv2-social a { display: inline-flex; width: 38px; height: 38px; border: 1px solid rgba(201, 150, 58, 0.25); border-radius: 50%; align-items: center; justify-content: center; color: rgba(245, 239, 230, 0.7); }
.twv2-social a:hover { border-color: var(--twv2-gold); color: var(--twv2-gold-light); }
.twv2-footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(201, 150, 58, 0.12); display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; color: rgba(245, 239, 230, 0.5); font-size: 0.82rem; }

/* ============================================================
   PÁGINAS INTERNAS — cabeçalho escuro (navbar legível)
   ============================================================ */
.twv2-pagehead { padding: 160px var(--twv2-px) 80px; border-bottom: 1px solid rgba(201, 150, 58, 0.12); background: linear-gradient(150deg, #141009 0%, #2a1508 60%, var(--twv2-brown) 100%); text-align: center; }
.twv2-pagehead .twv2-eyebrow { color: var(--twv2-gold-light); }
.twv2-pagehead .twv2-title { color: var(--twv2-cream); }
.twv2-pagehead .twv2-lead { color: rgba(245, 239, 230, 0.78); }

/* Reveal on scroll — fade + subida lenta com easing refinado */
.twv2-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 1.1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}
.twv2-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   CARD DE MARCA CLICÁVEL + PLAYER GLOBAL DO SPOTIFY
   ============================================================ */
.twv2-brand { cursor: pointer; font: inherit; color: inherit; appearance: none; -webkit-appearance: none; }
.twv2-qr-spotify { margin: 2.6rem auto 0; max-width: 720px; }

/* ============================================================
   MODAL DE MARCA (história + produtos + Spotify)
   ============================================================ */
.twv2-noscroll { overflow: hidden; }
.twv2-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.twv2-modal.open { display: block; }
.twv2-modal-overlay { position: absolute; inset: 0; background: rgba(13, 10, 7, 0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.twv2-modal-card {
    position: relative; z-index: 1;
    background: var(--twv2-cream); color: var(--twv2-text);
    max-width: 720px; width: calc(100% - 32px); max-height: 90vh; overflow-y: auto;
    margin: 5vh auto; border-radius: var(--twv2-radius-lg); box-shadow: var(--twv2-shadow-hover);
    animation: twv2-modal-in 0.4s var(--twv2-ease);
}
@keyframes twv2-modal-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.twv2-modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--twv2-cream-2); background: var(--twv2-white); color: var(--twv2-text); cursor: pointer; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; transition: 0.25s var(--twv2-ease); z-index: 2; }
.twv2-modal-close:hover { background: var(--twv2-gold); color: var(--twv2-dark); border-color: var(--twv2-gold); }
.twv2-modal-head { padding: 2.6rem 2.2rem 1.3rem; border-bottom: 1px solid var(--twv2-cream-2); text-align: center; }
.twv2-modal-logo { max-height: 72px; width: auto; margin: 0 auto 1rem; object-fit: contain; }
.twv2-modal-name { font-family: var(--twv2-serif); font-size: 1.9rem; font-weight: 800; margin: 0; color: var(--twv2-text); }
.twv2-modal-body { padding: 1.8rem 2.2rem 2.4rem; }
.twv2-modal-block { margin-bottom: 2rem; }
.twv2-modal-block:last-child { margin-bottom: 0; }
.twv2-modal-story { color: var(--twv2-gray); line-height: 1.8; margin: 0; white-space: pre-line; }
.twv2-modal-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.twv2-modal-product { display: flex; gap: 12px; align-items: center; background: var(--twv2-white); border: 1px solid var(--twv2-cream-2); border-radius: var(--twv2-radius-md); padding: 10px; }
.twv2-modal-product img, .twv2-modal-product .ph { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; object-fit: cover; }
.twv2-modal-product .ph { background: var(--twv2-cream-2); display: flex; align-items: center; justify-content: center; color: var(--twv2-gold-dim); }
.twv2-modal-product b { font-size: 0.9rem; color: var(--twv2-text); display: block; line-height: 1.3; }
.twv2-modal-product span { font-size: 0.76rem; color: var(--twv2-gray); }
a.twv2-modal-product { text-decoration: none; cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
a.twv2-modal-product:hover { border-color: var(--twv2-gold-dim); box-shadow: var(--twv2-shadow); transform: translateY(-2px); }
.twv2-modal-product-go { margin-left: auto; padding-left: 8px; color: var(--twv2-gold-dim); opacity: 0; transform: translateX(-4px); transition: opacity .25s ease, transform .25s ease; flex-shrink: 0; }
a.twv2-modal-product:hover .twv2-modal-product-go { opacity: 1; transform: translateX(0); }
.twv2-modal-spotify iframe { width: 100%; border: 0; border-radius: 12px; min-height: 152px; }
@media (max-width: 520px) { .twv2-modal-products { grid-template-columns: 1fr; } .twv2-modal-body { padding: 1.5rem 1.4rem 2rem; } .twv2-modal-head { padding: 2.2rem 1.4rem 1.2rem; } }

/* ============================================================
   UNIVERSO DAS MARCAS — /universo (EPIC 21 / T113)
   ============================================================ */
/* ============================================================
   3D CARD STACK ANIMATION (Bogdan Zhuk reference)
   ============================================================ */
.twv2-uni-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.twv2-uni-chip {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 20px;
    background: var(--twv2-white);
    border: 1px solid rgba(201, 150, 58, 0.12);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.twv2-uni-chip:hover { transform: translateY(-4px); border-color: var(--twv2-gold-dim); box-shadow: 0 15px 35px -8px rgba(201, 150, 58, 0.15); }
.twv2-uni-chip.active {
    border-color: var(--twv2-gold);
    background: linear-gradient(145deg, var(--twv2-white), #fdfbf7);
    box-shadow: 0 15px 35px -8px rgba(201, 150, 58, 0.25), inset 0 0 0 2px var(--twv2-gold);
    transform: translateY(-4px);
}
.twv2-uni-chip i { font-size: 1.4rem; color: var(--twv2-gold-dim); transition: transform .25s ease, color .25s ease; }
.twv2-uni-chip.active i { color: var(--twv2-gold); transform: scale(1.1); }
.twv2-uni-chip b { font-size: 1.05rem; color: var(--twv2-text); transition: color .25s ease; }
.twv2-uni-chip.active b { color: var(--twv2-gold-dim); }
.twv2-uni-chip span { font-size: .8rem; color: var(--twv2-gray); }

.twv2-uni-sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
}
.twv2-uni-section {
    color: #fff;
}
.twv2-uni-head {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 50px 6vw 20px;
    background: transparent;
    border: 0;
    color: inherit;
    text-align: left;
}
.twv2-uni-head > i { font-size: 1.3rem; opacity: .85; }
.twv2-uni-nome { font-family: var(--twv2-serif); font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; margin: 0; letter-spacing: 1px; }
.twv2-uni-count { margin-left: auto; font-size: .85rem; opacity: .75; white-space: nowrap; }
.twv2-uni-body { max-height: none; overflow: visible; }
@media (min-width: 768px) {
    .twv2-uni-grid {
        position: relative;
        height: 410px;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1500px;
        overflow: visible;
        margin: 0 auto;
        width: 100%;
        max-width: 1000px;
    }
    .twv2-uni-card {
        position: absolute;
        width: 260px;
        height: 310px;
        transform-style: preserve-3d;
        transform: translateX(calc(var(--offset) * 200px)) 
                   translateZ(calc(var(--abs-offset) * -80px)) 
                   rotateY(calc(var(--offset) * -25deg)) 
                   scale(calc(1 - var(--abs-offset) * 0.05));
        z-index: calc(10 - var(--abs-offset));
        opacity: calc(1 - var(--abs-offset) * 0.25);
        pointer-events: auto;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                    z-index 0.8s, 
                    opacity 0.8s, 
                    background 0.8s, 
                    border-color 0.8s, 
                    box-shadow 0.8s;
        
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        text-decoration: none;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 30px 24px 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .twv2-uni-card.is-active {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4);
    }
    .twv2-uni-card.is-active:hover {
        transform: translateX(0) translateZ(60px) rotateY(0deg) scale(1.05);
        background: rgba(255, 255, 255, 0.18);
        border-color: var(--twv2-gold);
        box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 150, 58, 0.25);
    }
    .twv2-uni-card img, .twv2-uni-ph, .twv2-uni-card-title, .twv2-uni-card-explorar-line, .twv2-uni-card-btn, .twv2-uni-card-novidade-txt {
        transform: translateZ(15px);
        transition: transform 0.8s;
    }
}
@media (max-width: 767px) {
    .twv2-uni-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 20px 6vw 50px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .twv2-uni-card {
        flex: 0 0 250px;
        height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 28px 20px 20px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 24px;
        text-decoration: none;
        color: #fff;
    }
}
.twv2-uni-card img { max-width: 140px; max-height: 80px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.twv2-uni-ph { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; }
.twv2-uni-card-title { font-family: var(--twv2-serif); font-size: 1.65rem !important; font-weight: 500 !important; color: #fff; text-align: center; margin: 8px 0; text-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.twv2-uni-card-explorar-line { display: flex; align-items: center; gap: 12px; width: 80%; color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 400; }
.twv2-uni-card-explorar-line::before, .twv2-uni-card-explorar-line::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.25); }
.twv2-uni-card-novidade-txt { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-align: center; margin: 0; max-width: 90%; height: 34px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.twv2-uni-card-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: all 0.3s ease; margin-top: 4px; }
.twv2-uni-card:hover .twv2-uni-card-btn { border-color: var(--twv2-gold); box-shadow: 0 0 15px rgba(201, 150, 58, 0.4); background: rgba(255,255,255,0.1); }
.twv2-uni-card-btn--novidade { opacity: 0.6; border-style: dashed; }
.twv2-uni-card--static { opacity: .75; cursor: default; }
.twv2-uni-empty { padding: 0 6vw 40px; opacity: .8; }


/* ============================================================
   STORE FINDER — SITE-003
   ============================================================ */
.twv2-sf-search {
    background: var(--twv2-white);
    border: 1px solid var(--twv2-cream-2);
    border-radius: var(--twv2-radius-lg);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--twv2-shadow);
    margin-bottom: 2rem;
}
.twv2-sf-search-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.twv2-sf-search-inner > i {
    color: var(--twv2-gold-dim);
    font-size: 1rem;
    flex-shrink: 0;
}
.twv2-sf-input {
    flex: 1;
    background: transparent;
    border: none;
    font-family: var(--twv2-sans);
    font-size: 1rem;
    color: var(--twv2-text);
    outline: none;
    padding: 0.55rem 0;
}
.twv2-sf-input::placeholder { color: var(--twv2-gray); opacity: 0.7; }

.twv2-sf-filters {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}
.twv2-sf-filter {
    background: transparent;
    border: 1px solid var(--twv2-cream-2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-family: var(--twv2-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--twv2-gray);
    cursor: pointer;
    transition: all 0.25s ease;
}
.twv2-sf-filter:hover { border-color: var(--twv2-gold); color: var(--twv2-text); }
.twv2-sf-filter.active {
    background: var(--twv2-gold);
    border-color: var(--twv2-gold);
    color: var(--twv2-dark);
}

.twv2-sf-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 500px;
}
@media (min-width: 960px) {
    .twv2-sf-layout { grid-template-columns: 1.6fr 1fr; }
}

.twv2-sf-map-wrap {
    border: 1px solid var(--twv2-cream-2);
    border-radius: var(--twv2-radius-lg);
    overflow: hidden;
    box-shadow: var(--twv2-shadow);
    min-height: 400px;
}
.twv2-sf-map { width: 100%; height: 100%; min-height: 400px; background: #f3ece0; }

.twv2-sf-results {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--twv2-gold-dim) var(--twv2-cream-2);
}
.twv2-sf-results::-webkit-scrollbar { width: 6px; }
.twv2-sf-results::-webkit-scrollbar-track { background: var(--twv2-cream-2); border-radius: 3px; }
.twv2-sf-results::-webkit-scrollbar-thumb { background: var(--twv2-gold-dim); border-radius: 3px; }

.twv2-sf-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: var(--twv2-gray);
    text-align: center;
    gap: 1rem;
}
.twv2-sf-empty i { font-size: 2.5rem; color: var(--twv2-gold-dim); opacity: 0.5; }
.twv2-sf-empty p { font-size: 0.95rem; max-width: 280px; }

.twv2-sf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--twv2-gray);
}
.twv2-sf-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--twv2-cream-2);
    border-top-color: var(--twv2-gold);
    border-radius: 50%;
    animation: twv2-spin 0.8s linear infinite;
}
@keyframes twv2-spin { to { transform: rotate(360deg); } }

.twv2-sf-list { display: flex; flex-direction: column; gap: 0.8rem; }

.twv2-sf-card {
    background: var(--twv2-white);
    border: 1px solid var(--twv2-cream-2);
    border-radius: var(--twv2-radius-md);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--twv2-shadow);
    cursor: default;
    transition: transform 0.25s var(--twv2-ease), box-shadow 0.25s var(--twv2-ease), border-color 0.25s;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}
.twv2-sf-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--twv2-shadow-hover);
    border-color: var(--twv2-gold);
}
.twv2-sf-card-content {
    flex: 1;
}
.twv2-sf-card-photo {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--twv2-cream-2);
}
.twv2-sf-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twv2-sf-card-head { margin-bottom: 0.5rem; }
.twv2-sf-card-name {
    font-family: var(--twv2-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--twv2-text);
    margin: 0;
    line-height: 1.3;
}
.twv2-sf-card-category {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: var(--twv2-gold-dim);
    font-weight: 600;
}

.twv2-sf-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.twv2-sf-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
}
.twv2-sf-card-rating i { color: var(--twv2-gold); font-size: 0.75rem; }
.twv2-sf-card-rating b { color: var(--twv2-text); font-weight: 700; }
.twv2-sf-card-rating small { color: var(--twv2-gray); font-size: 0.75rem; }

.twv2-sf-card-status {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}
.twv2-sf-card-status.sf-open { background: rgba(76, 175, 80, 0.12); color: #2e7d32; }
.twv2-sf-card-status.sf-closed { background: rgba(211, 47, 47, 0.1); color: #c62828; }

.twv2-sf-card-addr {
    font-size: 0.85rem;
    color: var(--twv2-gray);
    margin: 0 0 0.7rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.twv2-sf-card-addr i { color: var(--twv2-gold-dim); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

/* ─── Detail Panel (slide in from right) ─── */
.twv2-sf-detail {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(480px, 92vw);
    z-index: 1200;
    background: var(--twv2-cream);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.45s var(--twv2-ease);
    box-shadow: -10px 0 40px rgba(13, 10, 7, 0.2);
}
.twv2-sf-detail.open { transform: translateX(0); }

.twv2-sf-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 1199;
    background: rgba(13, 10, 7, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.twv2-sf-detail-overlay.open { opacity: 1; pointer-events: auto; }

.twv2-sf-detail-close {
    position: sticky;
    top: 14px;
    float: right;
    margin: 14px 14px 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--twv2-cream-2);
    background: var(--twv2-white);
    color: var(--twv2-text);
    cursor: pointer;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.25s var(--twv2-ease);
}
.twv2-sf-detail-close:hover { background: var(--twv2-gold); color: var(--twv2-dark); border-color: var(--twv2-gold); }

.twv2-sf-detail-photos {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.twv2-sf-detail-photos::-webkit-scrollbar { display: none; }
.twv2-sf-detail-photos img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.twv2-sf-detail-info { padding: 1.6rem 1.8rem 2.5rem; }
.twv2-sf-detail-name {
    font-family: var(--twv2-serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--twv2-text);
    margin: 0 0 0.5rem;
}

.twv2-sf-detail-cats { margin: 0 0 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.twv2-sf-tag {
    display: inline-block;
    background: var(--twv2-cream-2);
    color: var(--twv2-gray);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.twv2-sf-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    color: var(--twv2-gold);
    font-size: 0.85rem;
}
.twv2-sf-detail-rating b { color: var(--twv2-text); font-weight: 700; font-size: 1rem; }
.twv2-sf-detail-rating small { color: var(--twv2-gray); font-size: 0.82rem; }

.twv2-sf-detail-row {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    color: var(--twv2-text);
}
.twv2-sf-detail-row i { color: var(--twv2-gold-dim); width: 18px; flex-shrink: 0; margin-top: 3px; }
.twv2-sf-detail-row a { color: var(--twv2-gold-dim); text-decoration: underline; text-underline-offset: 2px; }
.twv2-sf-detail-row a:hover { color: var(--twv2-gold); }

.twv2-sf-detail-hours { margin-top: 1.5rem; }
.twv2-sf-detail-hours h4 {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--twv2-text);
    font-weight: 700;
    margin: 0 0 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.twv2-sf-detail-hours h4 i { color: var(--twv2-gold-dim); }
.twv2-sf-detail-hours ul { list-style: none; padding: 0; margin: 0; }
.twv2-sf-detail-hours li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--twv2-cream-2);
    font-size: 0.88rem;
    color: var(--twv2-gray);
}
.twv2-sf-detail-hours li:last-child { border-bottom: 0; }

.twv2-sf-detail-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.twv2-sf-detail-reviews { margin-top: 2rem; }
.twv2-sf-detail-reviews h4 {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--twv2-text);
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.twv2-sf-detail-reviews h4 i { color: var(--twv2-gold); }

.twv2-sf-review {
    background: var(--twv2-white);
    border: 1px solid var(--twv2-cream-2);
    border-radius: var(--twv2-radius-md);
    padding: 1rem 1.1rem;
    margin-bottom: 0.7rem;
}
.twv2-sf-review-head {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 0.5rem;
}
.twv2-sf-review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.twv2-sf-review-head b { font-size: 0.88rem; color: var(--twv2-text); display: block; }
.twv2-sf-review-stars { font-size: 0.72rem; color: var(--twv2-gold); display: flex; align-items: center; gap: 0.3rem; }
.twv2-sf-review-stars small { color: var(--twv2-gray); font-size: 0.72rem; }
.twv2-sf-review p { font-size: 0.88rem; color: var(--twv2-gray); margin: 0; line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
    .twv2-kpis { grid-template-columns: repeat(5, 1fr); }
    .twv2-pillars { grid-template-columns: repeat(3, 1fr); }
    .twv2-brands { grid-template-columns: repeat(4, 1fr); }
    .twv2-qr-grid { grid-template-columns: repeat(3, 1fr); }
    .twv2-steps { grid-template-columns: repeat(3, 1fr); }
    .twv2-contact { grid-template-columns: 1.4fr 1fr; }
    .twv2-form { grid-template-columns: repeat(2, 1fr); }
    .twv2-field--full { grid-column: 1 / -1; }
    .twv2-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (min-width: 960px) {
    .twv2-nav-links, .twv2-nav-cta { display: flex; }
    .twv2-burger { display: none; }
}
@media (min-width: 960px) and (max-width: 1279px) {
    .twv2-nav-inner { gap: 12px; }
    .twv2-logo-text { display: none; }
    .twv2-nav-client { font-size: 0.72rem; }
    .twv2-nav-cta .twv2-btn--sm { padding: 0.5rem 1rem; font-size: 0.72rem; }
}
@media (prefers-reduced-motion: reduce) {
    .twv2-reveal { opacity: 1; transform: none; transition: none; }
    .twv2-hero-scroll::after { animation: none; }
    .twv2-hero-media img, .twv2-hero-media video { animation: none; transform: none; }
}

/* ============================================================
   GLOBAL BACKGROUND VIDEO & SCROLL REVEAL STYLES (v2 Home)
   ============================================================ */
.twv2-global-bg-video-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}
.twv2-global-bg-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

body.twv2-home {
    background: transparent !important;
}
body.twv2-home .twv2-section {
    background: var(--twv2-cream);
    transition: background 0.3s ease;
}
body.twv2-home .twv2-section--alt {
    background: var(--twv2-white);
}
body.twv2-home .twv2-hero {
    background: transparent !important;
}

/* Sections that reveal the background video */
body.twv2-home .twv2-section.twv2-section--video-bg {
    background: rgba(20, 16, 9, 0.76) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--twv2-cream) !important;
}

body.twv2-home .twv2-section.twv2-section--video-bg .twv2-title {
    color: var(--twv2-cream) !important;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-lead {
    color: rgba(245, 239, 230, 0.8) !important;
}

/* Card adjustments in video sections */
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-qr-item,
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-step {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(201, 150, 58, 0.20) !important;
    color: var(--twv2-cream) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-qr-item:hover,
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-step:hover {
    transform: translateY(-4px);
    border-color: var(--twv2-gold) !important;
    box-shadow: 0 15px 40px rgba(201, 150, 58, 0.15);
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-qr-item span,
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-step b {
    color: rgba(245, 239, 230, 0.95) !important;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-qr-item i,
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-step::before {
    color: var(--twv2-gold-light) !important;
}

/* Markets list in video sections */
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-market {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(245, 239, 230, 0.8) !important;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-market:hover {
    border-color: var(--twv2-gold) !important;
    color: #fff !important;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-market.active {
    background: var(--twv2-gold) !important;
    color: #fff !important;
    border-color: var(--twv2-gold) !important;
}

/* Brand buttons in video sections */
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-brand {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(201, 150, 58, 0.20) !important;
    color: var(--twv2-cream) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-brand:hover {
    transform: translateY(-4px);
    border-color: var(--twv2-gold) !important;
    box-shadow: 0 15px 40px rgba(201, 150, 58, 0.15);
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-brand b {
    color: var(--twv2-cream) !important;
}
body.twv2-home .twv2-section.twv2-section--video-bg .twv2-brand img {
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)) brightness(1.2);
}

/* ============================================================
   PILARES — 5 pilares do portfólio TW
   ============================================================ */
.twv2-pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3.2rem;
}
@media (min-width: 640px) {
    .twv2-pilares-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .twv2-pilar-card:nth-child(4) { grid-column: 1; }
    .twv2-pilar-card:nth-child(5) { grid-column: 3; }
}
@media (min-width: 1060px) {
    .twv2-pilares-grid { grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
    .twv2-pilar-card:nth-child(4),
    .twv2-pilar-card:nth-child(5) { grid-column: auto; }
}

.twv2-pilar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.6rem 1.2rem 2.2rem;
    border-radius: var(--twv2-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 150, 58, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 0.4s var(--twv2-ease), border-color 0.4s var(--twv2-ease), transform 0.4s var(--twv2-ease);
}
.twv2-pilar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 150, 58, 0.50);
    transform: translateY(-5px);
}
.twv2-pilar-card i {
    font-size: 1.9rem;
    color: var(--twv2-gold-light);
    margin-bottom: 1.2rem;
    line-height: 1;
    opacity: 0.9;
}
.twv2-pilar-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--twv2-gold);
    border-radius: 1px;
    margin: 0 auto 1.1rem;
    opacity: 0.55;
}
.twv2-pilar-card h3 {
    font-family: var(--twv2-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--twv2-cream);
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* ============================================================
   TIMELINE (página Sobre — "Nossa Trajetória")
   ============================================================ */
.twv2-timeline { position: relative; max-width: 720px; margin: 3rem auto 0; }
.twv2-timeline-item { position: relative; padding-left: 2.6rem; padding-bottom: 2.4rem; }
.twv2-timeline-item:last-child { padding-bottom: 0; }
.twv2-timeline-item::before {
    content: ''; position: absolute; left: 9px; top: 24px; bottom: -2.4rem; width: 2px;
    background: linear-gradient(180deg, rgba(201, 150, 58, 0.5), rgba(201, 150, 58, 0.1));
}
.twv2-timeline-item:last-child::before { display: none; }
.twv2-timeline-dot {
    position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
    background: var(--twv2-gold); box-shadow: 0 0 0 4px rgba(201, 150, 58, 0.18);
}
.twv2-timeline-year {
    display: inline-block; font-family: var(--twv2-serif); font-weight: 700;
    color: var(--twv2-gold-light); font-size: 1.15rem; margin-bottom: 0.3rem;
}
.twv2-timeline-content h3 {
    font-family: var(--twv2-serif); font-size: 1.3rem; font-weight: 700;
    margin: 0.2rem 0 0.5rem; color: var(--twv2-cream);
}
.twv2-timeline-content p { color: rgba(245, 239, 230, 0.82); margin: 0; font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 560px) {
    .twv2-timeline-item { padding-left: 2.2rem; }
}
