
:root {
  --noite: #171008;
  --profundo: #0C2340;
  --ouro: #C9A84C;
  --ouro-acessivel: #A68A3A; /* contraste WCAG AA sobre linho */
  --ambar: #D4873A;
  --linho: #F9F3E9;
  --jacaranda: #2B1805;
  --mogno: #B49274;
  --cobre: #B87333;
  --cedro: #A9774C;
  --carvalho: #CBAB8B;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Focus visible — acessibilidade por teclado */
:focus-visible {
  outline: 2px solid var(--ouro);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--linho);
  color: var(--noite);
  overflow-x: hidden;
}

/* NAV — Frosted glass (Oura-inspired) */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px;
  background: rgba(23, 16, 8, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), background 0.4s ease;
}
.nav.transparent {
  background: rgba(23, 16, 8, 0.0);
  border-bottom-color: transparent;
}
.nav.scrolled {
  background: rgba(23, 16, 8, 0.75);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}
.nav.hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; }
.nav-center { display: flex; align-items: center; gap: 32px; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* Nav links e triggers — estilo unificado (Lucid-style) */
.nav-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--linho);
  opacity: 0.55;
  text-decoration: none;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.01em;
}
.nav-item:hover,
.nav-item:focus-visible {
  opacity: 1;
}
.nav-trigger[aria-expanded="true"] {
  opacity: 1;
}

/* =============================================
   DRAWER MEGA — Lucid-style lateral
   ============================================= */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 98;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-mega {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(480px, 92vw);
  background: rgba(12, 35, 64, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.5s;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer-mega.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-mega-inner {
  padding: 96px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}

.drawer-mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.drawer-mega-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ouro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.drawer-mega-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(249, 243, 233, 0.12);
  background: none;
  color: var(--linho);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
}
.drawer-mega-close:hover {
  opacity: 1;
  border-color: rgba(201, 168, 76, 0.4);
  transform: rotate(90deg);
}
.drawer-mega-close svg {
  width: 16px;
  height: 16px;
}

/* Card visual grande no topo */
.drawer-mega-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: border-color 0.3s, transform 0.4s;
}
.drawer-mega-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}
.drawer-mega-card:hover .drawer-mega-card-media {
  transform: scale(1.03);
}
.drawer-mega-card-media {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(23, 16, 8, 0.9) 0%, rgba(12, 35, 64, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.drawer-mega-card-media--bioma {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 39px, rgba(201, 168, 76, 0.04) 39px, rgba(201, 168, 76, 0.04) 40px),
    radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, rgba(23, 16, 8, 0.9) 0%, rgba(12, 35, 64, 0.95) 100%);
}
.drawer-mega-card-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ouro);
  letter-spacing: 0.14em;
  opacity: 0.8;
}
.drawer-mega-card-body {
  padding: 18px 20px 22px;
  background: rgba(0, 0, 0, 0.2);
}
.drawer-mega-card-body h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--linho);
  line-height: 1.2;
  margin-bottom: 8px;
}
.drawer-mega-card-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--linho);
  opacity: 0.55;
  line-height: 1.55;
}

/* Lista tipográfica elegante */
.drawer-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.drawer-mega-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 243, 233, 0.06);
  transition: padding-left 0.3s ease, border-color 0.3s;
}
.drawer-mega-list li:last-child .drawer-mega-link {
  border-bottom: none;
}
.drawer-mega-link:hover {
  padding-left: 8px;
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.drawer-mega-link-name {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--linho);
  line-height: 1.2;
}
.drawer-mega-link-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--linho);
  opacity: 0.45;
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 768px) {
  .drawer-mega-inner {
    padding: 80px 28px 32px;
  }
  .drawer-mega-card-body h3 {
    font-size: 20px;
  }
  .drawer-mega-link-name {
    font-size: 17px;
  }
}

/* Login icon */
.nav-login {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(249,243,233,0.12);
  color: var(--linho); opacity: 0.5; cursor: pointer;
  transition: opacity 0.3s, border-color 0.3s;
}
.nav-login:hover { opacity: 1; border-color: rgba(249,243,233,0.3); }
.nav-login svg { width: 16px; height: 16px; }

/* CTA button */
.nav-cta {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--profundo); background: var(--ouro);
  padding: 10px 22px; border-radius: 6px; text-decoration: none;
  transition: all 0.3s; letter-spacing: 0.02em;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* =============================================
   GLOBAL NOISE OVERLAY
   ============================================= */
.noise-svg {
  position: absolute;
  width: 0;
  height: 0;
}
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  filter: url(#noiseFilter);
  background: transparent;
}

/* VIEWPORT BASE */
.viewport {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--profundo);
  padding: 72px 80px 60px;
  min-height: 100dvh;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img,
.hero-media video,
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Esmaecimento estilo Lucid: preto forte no topo (proteção da nav)
   transparente no centro, intenso na base (proteção do conteúdo) */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Vinheta lateral leve para profundidade */
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 100%),
    /* Esmaecimento vertical principal */
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 12%,
      rgba(0, 0, 0, 0.15) 30%,
      rgba(0, 0, 0, 0.10) 50%,
      rgba(0, 0, 0, 0.55) 75%,
      rgba(12, 35, 64, 0.92) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin-top: auto;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 32px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ouro); }
.badge-text { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; color: var(--ouro); letter-spacing: 0.12em; }
.hero-headline {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--linho);
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero-headline em {
  font-style: italic;
  color: var(--ouro);
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--linho);
  opacity: 0.85;
  line-height: 1.75;
  max-width: 620px;
  margin: 24px auto 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.005em;
}
.hero-tagline {
  display: block;
  margin-top: 16px;
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ouro);
  opacity: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* GSAP hero elements start hidden, animated in by JS */
.gsap-hero {
  opacity: 0;
  transform: translateY(40px);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 36px; }
.btn-primary {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--profundo); background: var(--ouro);
  padding: 16px 36px; border-radius: 6px; text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-secondary {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--linho); opacity: 0.8; background: transparent;
  padding: 16px 36px; border-radius: 6px; text-decoration: none;
  border: 1px solid rgba(249,243,233,0.15);
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: rgba(249,243,233,0.4); opacity: 1; }

/* METRICS */
.metrics { display: flex; gap: 80px; margin-top: 48px; justify-content: center; }
.metric { text-align: center; min-width: 200px; }
.metric-value { font-family: 'Bodoni Moda', serif; font-weight: 500; font-size: 40px; color: var(--ouro); }
.metric-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; color: var(--linho); opacity: 0.3; letter-spacing: 0.08em; margin-top: 6px; }

/* =============================================
   HERO SCROLL CUE — indicador de rolagem
   ============================================= */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.hero-scroll-cue:hover { opacity: 1; }
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--ouro));
  animation: scrollCue 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =============================================
   HERO METRICS STRIP — segunda rolagem
   ============================================= */
.hero-metrics-strip {
  position: relative;
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--linho);
  overflow: hidden;
}
.hero-metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-metrics-grid .metric {
  text-align: center;
  position: relative;
}
.hero-metrics-grid .metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(23, 16, 8, 0.12);
}
.hero-metrics-grid .metric-value {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--ouro-acessivel);
  line-height: 1;
}
.hero-metrics-grid .metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--noite);
  opacity: 0.45;
  letter-spacing: 0.12em;
  margin-top: 12px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-metrics-strip { padding: 56px 24px; }
  .hero-metrics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-metrics-grid .metric:not(:last-child)::after {
    display: none;
  }
}

/* TEXT VIEWPORTS */
.vp-dark { background: var(--noite); }
.vp-dark .img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(23,16,8,0.8) 0%, rgba(12,35,64,0.3) 50%, rgba(23,16,8,0.9) 100%);
}
.vp-dark .img-label {
  position: absolute; bottom: 20px; left: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--linho); opacity: 0.15;
}
.vp-text { position: relative; z-index: 1; text-align: center; }
.vp-text h2 { font-family: 'Bodoni Moda', serif; font-weight: 400; font-size: 52px; color: var(--linho); line-height: 1.2; }
.vp-text h2 em { font-style: italic; color: var(--ouro); }
.vp-text .subtitle { font-size: 18px; color: var(--linho); opacity: 0.4; margin-top: 24px; }

/* TRANSITION VP */
.vp-transition {
  background: linear-gradient(to bottom, var(--noite) 0%, #1a150e 40%, var(--linho) 100%);
}
.vp-transition h2 { font-family: 'Bodoni Moda', serif; font-weight: 400; font-size: 48px; color: var(--linho); text-align: center; line-height: 1.3; }

/* A 55 EXISTE */
.vp-linho { background: var(--linho); padding: 120px 80px; }
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--ouro); letter-spacing: 0.14em; margin-bottom: 16px;
}
.vp-linho h2 { font-family: 'Bodoni Moda', serif; font-weight: 400; font-size: 48px; color: var(--noite); text-align: center; margin-bottom: 56px; }
.concepts { display: flex; gap: 40px; max-width: 1200px; width: 100%; }
.concept { flex: 1; }
.concepts-swipe-hint { display: none; }
.concept-num { font-family: 'Bodoni Moda', serif; font-size: 64px; font-weight: 500; color: var(--ouro); opacity: 1; line-height: 1; }
.concept h3 { font-family: 'Bodoni Moda', serif; font-weight: 500; font-size: 20px; margin: 12px 0; }
.concept p { font-size: 14px; opacity: 0.5; line-height: 1.75; }
/* Dark bg concepts */
.vp-dark .concept h3 { color: var(--linho); }
.vp-dark .concept p { color: var(--linho); }
/* Light bg concepts */
.vp-linho .concept h3 { color: var(--noite); }
.vp-linho .concept p { color: var(--noite); }

/* TRÍADE / JORNADA CONSULTIVA */
.vp-triade { background: var(--noite); padding: 120px 80px; }
.triade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  align-items: start;
}
.triade-visual {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a150e 0%, #0d0906 100%);
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.triade-visual-media {
  position: absolute;
  inset: 0;
}
.triade-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Sistema de cross-fade para os 3 steps da Jornada */
.triade-visual-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity;
}
.triade-visual-slot.active {
  opacity: 1;
}
.triade-visual-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.triade-visual-slot.placeholder {
  background: linear-gradient(135deg, #2a1f12 0%, #1a150e 50%, #0d0906 100%);
  border-radius: 16px;
}
.triade-visual-slot.placeholder::after {
  content: attr(data-step);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bodoni Moda', serif;
  font-size: 120px;
  font-weight: 500;
  color: var(--ouro);
  opacity: 0.15;
}
.triade-visual-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(23, 16, 8, 0.4) 100%
  );
}
.triade-visual .img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--linho);
  opacity: 0.15;
}
.triade-content .section-label {
  color: var(--ouro);
}
.triade-content h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--linho);
  line-height: 1.15;
  margin-bottom: 24px;
}
.triade-content h2 em { font-style: italic; color: var(--ouro); }
.triade-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.triade-item { display: flex; align-items: center; gap: 12px; }
.triade-commitment {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ouro);
  opacity: 0.6;
  margin-top: 32px;
  line-height: 1.6;
}
.triade-cta {
  margin-top: 24px;
}

/* BIOMA */
.vp-bioma { background: var(--linho); padding: 120px 80px; }
.bioma-layers { display: flex; gap: 24px; max-width: 1280px; width: 100%; margin-top: 56px; }
.bioma-card {
  flex: 1; padding: 32px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(23,16,8,0.06);
}
.bioma-card.vision {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border-color: rgba(201,168,76,0.2);
}
.bioma-num { font-family: 'Bodoni Moda', serif; font-size: 48px; font-weight: 500; color: var(--ouro); opacity: 0.12; }
.bioma-card h3 { font-family: 'Bodoni Moda', serif; font-weight: 500; font-size: 20px; color: var(--noite); margin: 8px 0 4px; }
.bioma-brand { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--ouro); letter-spacing: 0.06em; }
.bioma-items { margin-top: 14px; }
.bioma-items li { font-size: 13px; color: var(--noite); opacity: 0.55; line-height: 1.8; list-style: none; padding-left: 14px; position: relative; }
.bioma-items li::before { content: ''; position: absolute; left: 0; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: var(--ouro); opacity: 0.4; }

/* JORNADA */
.vp-jornada { background: var(--profundo); padding: 120px 80px; }
.jornada-steps { display: flex; justify-content: space-between; max-width: 1200px; width: 100%; margin-top: 56px; }
.step { text-align: center; flex: 1; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Bodoni Moda', serif; font-size: 18px; font-weight: 500; color: var(--ouro);
}
.step h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--linho); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--linho); opacity: 0.4; }

/* =============================================
   VP6 NÚMEROS — relatório editorial (Goldman-style)
   ============================================= */
.vp-numeros {
  background: var(--linho);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 0.5px solid rgba(201, 168, 76, 0.2);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  width: 100%;
  margin-top: 3rem;
}
.numero {
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-right: 0.5px solid rgba(201, 168, 76, 0.2);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
}
/* Remove bordas da última coluna e última linha */
.numero:nth-child(3n) { border-right: none; }
.numero:nth-last-child(-n+3) { border-bottom: none; }
.numero-value {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--ouro-acessivel);
  line-height: 1;
}
.numero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--noite);
  opacity: 0.55;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* CTA FINAL */
.vp-cta {
  background-color: var(--profundo);
  background-image: url('assets/55_site_asset_proximopasso.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 80px;
  position: relative;
}
.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-media .img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,0.9) 0%, rgba(23,16,8,0.7) 100%);
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Overlay inteligente: topo e base escuros pra proteger texto;
     centro mais transparente pra deixar o âmbar da imagem respirar */
  background:
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(12, 35, 64, 0.55) 0%, rgba(12, 35, 64, 0.88) 85%),
    linear-gradient(
      to bottom,
      rgba(12, 35, 64, 0.9) 0%,
      rgba(12, 35, 64, 0.55) 35%,
      rgba(12, 35, 64, 0.55) 65%,
      rgba(12, 35, 64, 0.9) 100%
    );
}
.vp-cta .content { position: relative; z-index: 2; text-align: center; }
.vp-cta h2 { font-family: 'Bodoni Moda', serif; font-weight: 400; font-size: clamp(28px, 4vw, 48px); color: var(--linho); line-height: 1.2; margin-bottom: 16px; }
.vp-cta p { font-size: 16px; color: var(--linho); opacity: 0.45; line-height: 1.75; max-width: 520px; margin: 0 auto 40px; }
.vp-cta .ctas { display: flex; gap: 16px; justify-content: center; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp svg {
  opacity: 0.8;
}

/* =============================================
   VP8 QUOTE — editorial split (Oura-inspired)
   ============================================= */
.vp-quote {
  background: var(--linho);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
}
.quote-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.quote-eyebrow {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--ouro-acessivel);
}
.quote-headline {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.15;
  color: var(--noite);
  letter-spacing: -0.015em;
  margin: 0;
}
.quote-headline-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--ouro-acessivel);
  text-align: right;
  margin-top: 0.25em;
}
.quote-split-aside {
  padding-top: clamp(1rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.quote-context {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mogno);
  margin: 0;
  max-width: 38ch;
}
.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quote-author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--noite);
  margin: 0;
}
.quote-role {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--mogno);
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .quote-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .quote-headline-italic {
    text-align: left;
  }
  .quote-split-aside {
    padding-top: 0;
  }
  .quote-context {
    max-width: 100%;
  }
}

/* FOOTER */
.footer { background: var(--noite); padding: 56px 80px 32px; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 36px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand p { font-size: 12px; color: var(--linho); opacity: 0.3; line-height: 1.7; max-width: 240px; margin-top: 10px; }
.footer-cols { display: flex; gap: 48px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; color: var(--ouro); letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: var(--linho); opacity: 0.35; text-decoration: none; line-height: 2; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 0.7; }
.footer-divider { height: 1px; background: var(--linho); opacity: 0.06; margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; }
.footer-bottom span { font-size: 10px; color: var(--linho); opacity: 0.2; }
.footer-legal {
  font-size: 12px;
  color: var(--linho);
  opacity: 0.55;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  max-width: 900px;
  font-weight: 300;
  letter-spacing: 0.005em;
}
.footer-legal p {
  margin: 0 0 0.75rem;
}
.footer-legal p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-legal {
    font-size: 13px;
    line-height: 1.75;
    opacity: 0.65;
  }
}

/* =============================================
   VP2 — POSICIONAMENTO + MATURIDADE
   ============================================= */
#posicionamento {
  justify-content: flex-start;
  padding: 140px 80px 80px;
}
/* Slot fotografia editorial */
.posicionamento-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.posicionamento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posicionamento-media .img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,16,8,0.8) 0%, rgba(12,35,64,0.3) 50%, rgba(23,16,8,0.9) 100%);
}
#posicionamento .vp-statement {
  margin-bottom: 16px;
}
#posicionamento .vp-statement h2 {
  font-size: clamp(30px, 4vw, 52px);
}
#posicionamento .vp-body {
  font-size: 16px;
  color: var(--linho);
  opacity: 0.4;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
#posicionamento .concepts {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
#posicionamento .cta-wrapper {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.btn-primary--arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary--arrow .arrow {
  font-size: 18px;
}

/* GSAP stagger — start hidden, animated by ScrollTrigger */
.gsap-stagger {
  opacity: 0;
  transform: translateY(30px);
}

/* =============================================
   VP3 — JORNADA CONSULTIVA / NÚCLEO
   ============================================= */
#nucleo {
  padding: 120px 80px;
}
.step-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--ouro);
  opacity: 1;
  line-height: 1;
}
.step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ouro);
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.step-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  color: var(--linho);
  margin-top: 2px;
}
.step-desc {
  font-size: 14px;
  color: var(--linho);
  opacity: 0.4;
  line-height: 1.7;
  padding-left: 54px;
}
.step-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.triade-step {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(249, 243, 233, 0.06);
}
.triade-step:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* =============================================
   VP4 — TRÍADE HW/SW/FIN (Tabs interativas)
   ============================================= */
#triade {
  padding: 120px 80px;
}
#triade .section-heading {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--noite);
  text-align: center;
  margin-bottom: 16px;
}
#triade .section-heading em {
  color: var(--ouro);
}
#triade .section-body {
  font-size: 16px;
  color: var(--noite);
  opacity: 0.45;
  text-align: center;
  max-width: 560px;
  line-height: 1.75;
  margin: 0 auto 56px;
}

/* Tab Explorer */
.triade-explorer {
  max-width: 1100px;
  width: 100%;
}
.triade-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(23, 16, 8, 0.1);
  margin-bottom: 40px;
}
.triade-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}
.triade-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ouro);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.triade-tab.active::after {
  transform: scaleX(1);
}
.triade-tab-sigla {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--noite);
  opacity: 0.15;
  transition: all 0.3s;
}
.triade-tab.active .triade-tab-sigla {
  color: var(--ouro);
  opacity: 1;
}
.triade-tab-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--noite);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.triade-tab.active .triade-tab-name {
  opacity: 1;
}
.triade-tab:hover .triade-tab-name {
  opacity: 0.7;
}

/* Explorer Body — 2 columns */
.triade-explorer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Panel content */
.triade-panel {
  display: none;
  animation: panelFadeIn 0.4s ease;
}
.triade-panel.active {
  display: block;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.triade-panel h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--noite);
  margin-bottom: 16px;
}
.triade-panel p {
  font-size: 15px;
  color: var(--noite);
  opacity: 0.55;
  line-height: 1.75;
  margin-bottom: 24px;
}
.triade-panel-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(23, 16, 8, 0.08);
  border-bottom: 1px solid rgba(23, 16, 8, 0.08);
  margin-bottom: 20px;
}
.triade-panel-metric-value {
  font-family: 'Bodoni Moda', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ouro);
}
.triade-panel-metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--noite);
  opacity: 0.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.triade-panel-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ouro);
  text-decoration: none;
  transition: opacity 0.2s;
}
.triade-panel-link:hover {
  opacity: 0.7;
}

/* Visual area */
.triade-explorer-visual {
  position: relative;
  aspect-ratio: 4/3;
  max-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.triade-explorer-visual .triade-visual-slot {
  display: none;
  position: absolute;
  inset: 0;
  animation: panelFadeIn 0.4s ease;
  opacity: 1;
  transition: none;
  align-items: center;
  justify-content: center;
}
.triade-explorer-visual .triade-visual-slot:not(.active) {
  display: none;
}
.triade-explorer-visual .triade-visual-slot.active {
  display: flex;
}
.triade-explorer-visual .triade-visual-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
.triade-explorer-visual .triade-finance-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.triade-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23,16,8,0.06) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(23, 16, 8, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.triade-visual-placeholder-sigla {
  font-family: 'Bodoni Moda', serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--ouro);
  opacity: 0.08;
}

/* =============================================
   VP5 — BIOMA 4 CAMADAS
   ============================================= */
#bioma {
  padding: 120px 80px 200px;
  justify-content: flex-start;
  min-height: auto;
}
.bioma-bg-grid {
  position: absolute;
  inset: 0;
  background-image: url('assets/bioma-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Overlay multi-camada: protege topo e base, deixa o grid metálico respirar no centro */
.bioma-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Vinheta lateral leve para focar atenção no centro */
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, rgba(23, 16, 8, 0.45) 100%),
    /* Esmaecimento vertical principal — protege headline e base */
    linear-gradient(
      to bottom,
      rgba(23, 16, 8, 0.92) 0%,
      rgba(23, 16, 8, 0.65) 18%,
      rgba(23, 16, 8, 0.45) 40%,
      rgba(23, 16, 8, 0.55) 70%,
      rgba(23, 16, 8, 0.92) 100%
    );
}
.bioma-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.bioma-header h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--linho);
  text-align: center;
  margin-bottom: 16px;
}
.bioma-header h2 em {
  color: var(--ouro);
}
.bioma-header p {
  font-size: 16px;
  color: var(--linho);
  opacity: 0.4;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 48px;
}
/* Legacy bioma-stack removido — agora usa .bioma-rings */

/* =============================================
   VP6 — NÚMEROS
   ============================================= */
#numeros .section-heading {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--noite);
  text-align: center;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
#numeros .section-heading em {
  font-style: italic;
  color: var(--ouro-acessivel);
}
.numero-context {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--noite);
  opacity: 0.35;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Texto pequeno ouro sobre linho: usar variante acessível */
.vp-linho .section-label,
.vp-numeros .section-label,
.triade-panel-link,
.triade-card-metric span {
  color: var(--ouro-acessivel);
}

/* =============================================
   VP7 — CTA FINAL
   ============================================= */
#cta-final .section-label {
  color: var(--ouro);
}

/* =============================================
   VP8 — QUOTE
   ============================================= */
/* (uses existing .vp-quote styles) */

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  outline: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--linho);
  border-radius: 2px;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); opacity: 1; }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); opacity: 1; }

/* MOBILE NAV DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(12, 35, 64, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  z-index: 99;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.nav-drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer a.drawer-link {
  display: block;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  color: var(--linho); opacity: 0.6; text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(249,243,233,0.06);
  transition: opacity 0.2s;
}
.nav-drawer a.drawer-link:last-of-type { border-bottom: none; }
.nav-drawer a.drawer-link:hover { opacity: 1; }
.nav-drawer .drawer-cta {
  display: block; text-align: center; margin-top: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--profundo); background: var(--ouro);
  padding: 14px; border-radius: 6px; text-decoration: none;
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .nav { padding: 0 40px; }
  .nav-center { gap: 16px; }
  .nav-item > a { font-size: 12px; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }

  .hero { padding: 72px 40px 60px !important; }
  .hero-headline { font-size: 48px; }
  .metrics { gap: 40px; }
  .metric { min-width: 140px; }

  .viewport { padding: 80px 40px !important; }
  .viewport.vp-dark { padding: 100px 40px 60px !important; }
  .viewport.vp-triade { padding: 80px 40px !important; }
  .viewport.vp-linho { padding: 80px 40px !important; }
  .vp-cta { padding: 80px 40px !important; }
  .vp-quote { padding: 80px 40px !important; }
  .footer { padding: 56px 40px 32px; }

  .vp-text h2,
  #posicionamento .vp-statement h2 { font-size: 38px; }
  .triade-content h2 { font-size: 36px; }
  .vp-cta h2 { font-size: 38px; }
  #triade .section-heading,
  .bioma-header h2,
  #numeros .section-heading { font-size: 38px; }

  .triade-grid { gap: 40px; }
  .concepts { gap: 24px; }
  /* Numeros: 2 colunas em tablet, recalcula bordas */
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .numero { border-right: 0.5px solid rgba(201, 168, 76, 0.2); border-bottom: 0.5px solid rgba(201, 168, 76, 0.2); }
  .numero:nth-child(3n) { border-right: 0.5px solid rgba(201, 168, 76, 0.2); }
  .numero:nth-last-child(-n+3) { border-bottom: 0.5px solid rgba(201, 168, 76, 0.2); }
  .numero:nth-child(2n) { border-right: none; }
  .numero:nth-last-child(-n+2) { border-bottom: none; }

}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  /* NAV */
  .nav { padding: 0 20px; height: 64px; }
  .nav-center { display: none; }
  .nav-login { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  /* HERO */
  .hero {
    min-height: 100svh;
    padding: 96px 24px 56px !important;
    justify-content: space-between !important;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    margin: 0;
    padding: 24px 0; 
  }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; line-height: 1.25; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-secondary { text-align: center; padding: 15px 24px; }
  .metrics { flex-direction: column; gap: 24px; margin-top: 32px; }
  .metric { min-width: unset; }
  .metric-value { font-size: 32px; }
  .metric-label { font-size: 10px; }

  /* ALL VIEWPORT SECTIONS */
  .viewport:not(.hero) { min-height: auto; padding: 64px 24px !important; }
  .hero { padding: 96px 24px 56px !important; }
  .viewport.vp-dark { padding: 72px 24px 56px !important; }
  .viewport.vp-triade { padding: 64px 24px !important; }
  .viewport.vp-linho { padding: 64px 24px !important; }
  .vp-linho { padding: 64px 24px !important; }
  .vp-cta { padding: 72px 24px !important; }
  .vp-quote { padding: 64px 24px !important; }

  /* TYPOGRAPHY */
  .vp-text h2 { font-size: 26px !important; line-height: 1.3; }
  .vp-text h2 br { display: none; }
  #triade .section-heading,
  .bioma-header h2,
  #numeros .section-heading { font-size: 28px !important; }
  .vp-cta h2 { font-size: 28px !important; }
  .triade-content {
    text-align: center;
  }
  .triade-content h2 {
    font-size: 26px !important;
    line-height: 1.3;
    text-align: center;
  }
  .triade-content h2 br { display: inline; }
  .triade-content h2 em {
    display: block;
    font-size: 34px;
    margin-top: 6px;
    line-height: 1.15;
  }
  .triade-content .section-label { text-align: center; }
  .triade-cta {
    display: flex;
    justify-content: center;
  }

  /* CONCEPTS — carrossel com swipe nativo */
  .concepts {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .concepts::-webkit-scrollbar { display: none; }
  .concept {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }
  .concepts-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ouro);
    opacity: 0.75;
  }
  .concepts-swipe-dots {
    display: inline-flex;
    gap: 4px;
  }
  .concepts-swipe-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
  }
  .concepts-swipe-dots span:first-child { opacity: 1; }
  .concepts-swipe-arrow {
    display: inline-block;
    animation: swipeNudge 1.8s ease-in-out infinite;
  }
  @keyframes swipeNudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }

  /* MÉTRICAS SEBRAE — empilhar */
  .metrics--context {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* TRÍADE TABS — mobile */
  .triade-tabs { gap: 0; }
  .triade-tab { padding: 12px 8px; }
  .triade-tab-sigla { font-size: 18px; }
  .triade-tab-name { font-size: 12px; }
  .triade-explorer-body { grid-template-columns: 1fr; gap: 24px; }
  .triade-explorer-visual { aspect-ratio: 16/9; }
  .triade-panel h3 { font-size: 24px; }
  .triade-panel-metric-value { font-size: 28px; }

  /* TRÍADE — single column */
  .triade-grid { grid-template-columns: 1fr; gap: 32px; }
  .triade-visual { aspect-ratio: 16/9; min-height: 200px; position: relative; top: auto; }
  .triade-content p { font-size: 15px; }

  #bioma { padding-bottom: 80px; }

  /* NÚMEROS — mantém 2 colunas em mobile pequeno */
  .numero { padding: 1.25rem 0.75rem; }
  .numero-value { font-size: 1.6rem; }
  .numero-label { font-size: 0.75rem; }
  .numero-context { font-size: 0.65rem; }

  /* CTA FINAL */
  .vp-cta .ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .vp-cta p { font-size: 15px; }

  /* FOOTER */
  .footer { padding: 48px 24px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col { min-width: unset; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================= */
@media (max-width: 400px) {
  .hero-headline { font-size: 24px !important; }
  .nav-cta { display: none; }
  .numeros-grid { grid-template-columns: 1fr; }
  .numero { border-right: none !important; }
  .numero:nth-last-child(-n+1) { border-bottom: none !important; }
  .vp-text h2,
  .triade-content h2,
  #triade .section-heading,
  .bioma-header h2,
  #numeros .section-heading { font-size: 22px !important; }
  .footer-col { min-width: 100%; }
}

/* =============================================
   METRICS CONTEXT (VP2 — dados Sebrae)
   ============================================= */
.metrics--context {
  margin: 2rem 0 2.5rem;
}
.metrics--context .metric-value {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.metrics--context .metric-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* =============================================
   FAQ SECTION (VP6.5 — Crenças que travam)
   ============================================= */
.vp-faq {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--linho, #F9F3E9);
}
.faq-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(23, 16, 8, 0.1);
}
.faq-question {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: var(--noite, #171008);
  padding: 0.9rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ouro, #C9A84C);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-answer {
  padding: 0 0 1.1rem;
}
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  line-height: 1.65;
  color: var(--mogno, #B49274);
  max-width: 640px;
}

/* =============================================
   STRIP WHATSAPP (entre FAQ e CTA Final)
   ============================================= */
.strip-whatsapp {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  background: var(--noite, #171008);
}
.strip-whatsapp-content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.strip-whatsapp-text h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--linho, #F9F3E9);
  margin-bottom: 0.25rem;
}
.strip-whatsapp-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--mogno, #B49274);
}
.btn-whatsapp-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--ouro, #C9A84C);
  border-radius: 4px;
  color: var(--ouro, #C9A84C);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-whatsapp-strip:hover {
  background: var(--ouro, #C9A84C);
  color: var(--noite, #171008);
}
@media (max-width: 600px) {
  .strip-whatsapp-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   CTA PROOF (VP7) — prova social de diagnósticos
   ============================================= */
.cta-proof {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 2rem;
  padding: 1rem 1.5rem;
  border-top: 0.5px solid rgba(201, 168, 76, 0.3);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.3);
  max-width: 520px;
  flex-wrap: wrap;
}
.cta-proof-value {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--ouro);
  line-height: 1;
}
.cta-proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--mogno);
  line-height: 1.4;
}

/* =============================================
   BIOMA RINGS — anéis concêntricos
   ============================================= */
.bioma-rings {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}
.bioma-ring {
  position: relative;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bioma-ring + .bioma-ring {
  margin-top: -12px; /* sobreposição leve para sensação de camada */
}
.bioma-ring-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0.85;
}
.bioma-ring-title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--linho);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.bioma-ring-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--linho);
  opacity: 0.55;
  margin-top: 0.5rem;
  max-width: 80%;
}
.bioma-ring-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ouro);
  opacity: 0.3;
  line-height: 1;
}

/* Exterior (maior, convergência) → interior (menor, operação) */
.bioma-ring--outer {
  background: rgba(23, 16, 8, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.06), 0 4px 16px rgba(0, 0, 0, 0.3);
  margin: 0 0;
}
.bioma-ring--outer .bioma-ring-title {
  color: var(--ouro);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}
.bioma-ring--outer .bioma-ring-num {
  opacity: 0.5;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
}
.bioma-ring--3 {
  background: rgba(23, 16, 8, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  margin: 0 4%;
}
.bioma-ring--2 {
  background: rgba(23, 16, 8, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 8%;
}
.bioma-ring--1 {
  background: rgba(23, 16, 8, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  margin: 0 12%;
}

@media (max-width: 768px) {
  .bioma-ring--3, .bioma-ring--2, .bioma-ring--1 { margin-left: 0; margin-right: 0; }
  .bioma-ring { padding: 1.25rem 1.25rem; }
  .bioma-ring-num { right: 1.25rem; top: 1.25rem; }
  .bioma-ring-desc { max-width: 100%; font-size: 0.8rem; }
}

/* =============================================
   JORNADA CONSULTIVA — CARROSSEL
   ============================================= */
.jornada-carousel {
  max-width: 1100px;
  width: 100%;
  margin: 2rem auto 0;
}
.jornada-slides {
  position: relative;
  min-height: clamp(320px, 45vw, 480px);
}
.jornada-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.jornada-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.jornada-slide-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 420px;
}
.jornada-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jornada-slide-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.jornada-slide-text .step-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--ouro);
  opacity: 0.15;
  line-height: 1;
}
.jornada-slide-text .step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ouro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jornada-slide-text .step-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--linho);
  line-height: 1.25;
  margin-top: 0.25rem;
}
.jornada-slide-text .step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--linho);
  opacity: 0.65;
  margin-top: 0.5rem;
}
.jornada-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.jornada-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(249, 243, 233, 0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--linho);
}
.jornada-nav-btn:hover {
  background: var(--linho);
  color: var(--noite);
  border-color: var(--linho);
}
.jornada-dots {
  display: flex;
  gap: 8px;
}
.jornada-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(249, 243, 233, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.jornada-dots .dot.active {
  background: var(--ouro);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .jornada-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .jornada-slide-img {
    max-height: 280px;
    max-width: 240px;
    margin: 0 auto;
  }
  .jornada-slide-text {
    text-align: center;
    align-items: center;
  }
  .jornada-slides {
    min-height: 580px;
  }
}

/* =============================================
   MARQUEE — prova social rolando (G4-style)
   Técnica: 3 cópias do conteúdo + translateX 0 → -33.333% = loop sem corte em qualquer viewport
   ============================================= */
.marquee-section {
  background: var(--noite);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--noite), transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--noite), transparent);
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.55rem 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  /* animação e duração aplicadas via JS depois de calcular largura */
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  color: var(--ouro);
  opacity: 0.88;
  letter-spacing: 0.025em;
  padding: 0 1.25rem;
  line-height: 1.2;
}
.marquee-item em {
  font-style: italic;
  font-weight: 500;
  color: var(--ouro);
  opacity: 1;
}
.marquee-sep {
  font-family: 'Inter', sans-serif;
  color: var(--ouro);
  opacity: 0.45;
  font-size: 0.45em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

@keyframes marquee-horizontal {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--marquee-distance, -100%)); }
}

/* Mobile: padding lateral menor */
@media (max-width: 768px) {
  .marquee-item {
    padding: 0 0.85rem;
  }
  .marquee-section::before,
  .marquee-section::after {
    width: 40px;
  }
}

/* Acessibilidade: respeita preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translateX(0);
  }
}

/* =============================================
   IA SECTION — composição fotográfica (original funcional)
   ============================================= */
.vp-ia {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(23, 16, 8, 0.6) 0%,
      rgba(23, 16, 8, 0.35) 30%,
      rgba(23, 16, 8, 0.1) 48%,
      rgba(23, 16, 8, 0) 60%
    ),
    url("assets/ia-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.vp-ia .ia-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.vp-ia .ia-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1.25rem;
  max-width: 400px;
  justify-self: end;
}
.vp-ia .ia-text .section-label {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ouro);
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}
.vp-ia .ia-text .section-heading {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--linho);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.vp-ia .ia-text .section-heading em {
  font-style: italic;
  color: var(--ouro);
}
.vp-ia .ia-benefits {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 100%;
}
.vp-ia .ia-benefits li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--linho);
  opacity: 0.82;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  padding-right: 16px;
}
.vp-ia .ia-benefits li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ouro);
  opacity: 0.85;
}
.vp-ia .ia-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--linho);
  padding: 12px 24px;
  border: 1px solid rgba(249, 243, 233, 0.3);
  border-radius: 100px;
  background: rgba(23, 16, 8, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.vp-ia .ia-cta:hover {
  border-color: var(--ouro);
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-1px);
}
.vp-ia .ia-cta-arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.vp-ia .ia-cta:hover .ia-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .vp-ia {
    min-height: 100vh;
    background-image:
      linear-gradient(
        180deg,
        rgba(23, 16, 8, 0.4) 0%,
        rgba(23, 16, 8, 0.05) 25%,
        rgba(23, 16, 8, 0.15) 45%,
        rgba(23, 16, 8, 0.92) 65%,
        rgba(23, 16, 8, 0.98) 100%
      ),
      url("assets/ia-bg.jpg");
    align-items: flex-end;
    padding-bottom: clamp(2.5rem, 8vh, 5rem);
  }
  .vp-ia .ia-content {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .vp-ia .ia-text {
    align-items: center;
    text-align: center;
    justify-self: center;
    max-width: 100%;
  }
  .vp-ia .ia-text .section-label,
  .vp-ia .ia-text .section-heading,
  .vp-ia .ia-benefits li {
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.9),
      0 2px 16px rgba(0, 0, 0, 0.85);
  }
  .vp-ia .ia-text .section-heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .vp-ia .ia-benefits {
    align-items: center;
    max-width: 320px;
  }
  .vp-ia .ia-benefits li {
    padding-right: 14px;
    font-size: 12.5px;
    opacity: 1;
  }
  .vp-ia .ia-cta {
    background: rgba(23, 16, 8, 0.55);
    border-color: rgba(201, 168, 76, 0.4);
  }
}

/* =============================================
   HERO VIDEO
   ============================================= */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Economia de dados: esconde o vídeo quando o usuário
   ou a rede sinalizam conexão limitada. O poster (hero-bg.png)
   continua visível porque o <video> tem poster inline. */
@media (prefers-reduced-data: reduce) {
  .hero-video {
    display: none;
  }
  .hero-media {
    background-image: url("assets/hero-bg.png");
    background-size: cover;
    background-position: center center;
  }
}

/* =============================================
   TESTIMONIALS / PROVA SOCIAL
   ============================================= */
.vp-testimonials {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #F9F3E9 0%, #F0E6D2 40%, #E8D5B0 100%);
  overflow: hidden;
}
.testimonials-section-label {
  text-align: center;
  margin: 0 auto 2.5rem;
  display: block;
  width: 100%;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.testimonials-video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/11;
  max-height: 480px;
  box-shadow: 0 20px 60px rgba(23, 16, 8, 0.15);
}
.testimonials-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}
.testimonials-carousel {
  position: relative;
  min-height: clamp(280px, 34vw, 360px);
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.testimonial-quote {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--noite, #171008);
  margin-bottom: 2rem;
}
.testimonial-author {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--noite, #171008);
  margin-bottom: 0.25rem;
}
.testimonial-segment {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--mogno, #B49274);
}
.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(23, 16, 8, 0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--noite, #171008);
}
.testimonials-nav-btn:hover {
  background: var(--noite, #171008);
  color: var(--linho, #F9F3E9);
  border-color: var(--noite, #171008);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 16, 8, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-dots .dot.active {
  background: var(--ouro, #C9A84C);
  width: 24px;
  border-radius: 4px;
}
.testimonials-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--noite, #171008);
  text-decoration: none;
  margin-top: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.testimonials-cta:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials-video-wrapper {
    max-height: 360px;
    max-width: 280px;
    margin: 0 auto;
  }
  .testimonials-content {
    min-height: auto;
    text-align: center;
  }
  .testimonials-carousel {
    min-height: 380px;
  }
  .testimonials-nav {
    justify-content: center;
  }
  .testimonials-cta {
    text-align: center;
    display: block;
  }
  .testimonial-author {
    text-align: center;
  }
}
