/* =========================================================================
   OFT-Review Hero — production CSS
   - Sem @import de Google Fonts (já vem via preconnect no embed)
   - Scope agressivo em .oft-hero pra blindar contra Elementor
   - Sem React, sem Babel: tudo HTML server-rendered, CSS-only animations
   ========================================================================= */

.oft-hero,
.oft-hero *,
.oft-hero *::before,
.oft-hero *::after { box-sizing: border-box; }

.oft-hero {
  --gold-200: #F8DB7D;
  --gold-300: #ECC575;
  --gold-400: #DBAD6B;
  --gold-500: #B58851;
  --gold-700: #6E5230;
  --onyx-1000: #111111;
  --onyx-900: #131210;
  --fg-on-dark: #F4F0EA;

  background: #111111;
  color: var(--fg-on-dark);
  font-family: 'Exo 2', 'Inter', system-ui, -apple-system, sans-serif;
  /* CRÍTICO: trava no viewport. `overflow: clip` impede scroll horizontal
     mesmo se algum filho overflowar acidentalmente. */
  max-width: 100vw;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Grid items com min-width: 0 — sem isso, conteúdo "empurra" o grid
   pra fora do viewport no mobile (causa o scroll horizontal). */
.oft-hero__inner,
.oft-hero__copy,
.oft-hero__stage,
.oft-hero__nav-inner {
  min-width: 0;
  max-width: 100%;
}

/* H1 com break-word agressivo */
.oft-hero .oft-hero__h1 {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.oft-hero img { max-width: 100%; display: block; }
/* Remove sublinhado dos links que tema/Elementor força */
.oft-hero a,
.oft-hero a:hover,
.oft-hero a:focus,
.oft-hero a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* ==================== NAV ==================== */
.oft-hero__nav {
  position: relative;
  z-index: 30;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.oft-hero__nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.oft-hero__nav-logo img { height: 30px; opacity: 0.95; }
.oft-hero__nav-links { display: flex; gap: 28px; margin-left: auto; }
.oft-hero__nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  padding: 6px 0;
  transition: color .2s;
  position: relative;
}
.oft-hero__nav-links a:hover { color: #FBEBBE; }
.oft-hero__nav-links a.is-active { color: var(--gold-200); }
.oft-hero__nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

/* ==================== HERO ==================== */
.oft-hero__main {
  position: relative;
  overflow: hidden;
  padding: 16px 56px 24px;
}
.oft-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.oft-hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(248,219,125,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,219,125,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5), transparent 75%);
  opacity: 0.5;
}
.oft-hero__bg-radial-1 {
  position: absolute;
  top: -10%; right: -5%;
  width: 60%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(219,173,107,0.18), transparent 60%);
  filter: blur(20px);
}
.oft-hero__bg-radial-2 {
  /* Movido pra dentro da section (era bottom: -20% que vazava pra fora
     e criava quebra visível na transição com a próxima section). Agora
     fica no terço inferior, sem encostar na borda. */
  position: absolute;
  bottom: 25%; left: 10%;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(110,82,48,0.22), transparent 60%);
  filter: blur(24px);
}

.oft-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: stretch;
}

/* ==================== LEFT COPY ==================== */
.oft-hero__copy {
  position: relative;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oft-hero__eyebrow {
  align-self: flex-start;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(248,219,125,0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: 28px;
  animation: oft-rise 0.8s 0.1s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.oft-hero .oft-hero__h1 {
  font-family: 'Orbitron', 'Eurostile', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: 36px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 28px !important;
  max-width: 100%;
  color: #F4F0EA !important;
  animation: oft-rise 0.8s 0.25s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.oft-hero__h1-sub { color: rgba(244,240,234,0.92); font-weight: 400; }
/* Underline via background-image em vez de pseudo absoluto.
   inline (não inline-block) permite que o texto QUEBRE em múltiplas linhas
   no mobile sem ficar "ganhe" órfão. box-decoration-break: clone faz
   o underline aparecer em cada linha quebrada. */
.oft-hero__h1-underline {
  color: inherit;
  background-image: linear-gradient(90deg, transparent 0%, #F8DB7D 12%, #DBAD6B 50%, #F8DB7D 88%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
  padding-bottom: 6px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.oft-hero__lede {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244,240,234,0.78);
  max-width: 520px;
  margin: 0 0 28px;
  font-weight: 500;
  animation: oft-rise 0.8s 0.5s backwards cubic-bezier(0.2,0.8,0.2,1);
}

/* Social proof — agora clicável (âncora pra #oft-aprovados) */
.oft-hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
  width: max-content;
  max-width: 100%;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  animation: oft-rise 0.8s 0.6s backwards cubic-bezier(0.2,0.8,0.2,1);
}
.oft-hero__social-proof:hover {
  background: rgba(248,219,125,0.06);
  border-color: rgba(248,219,125,0.22);
  transform: translateX(2px);
}
.oft-hero__social-proof:hover .oft-hero__social-proof-arrow {
  transform: translateX(3px);
  color: var(--gold-200);
}
/* Arrow agora vive DENTRO do .oft-hero__social-proof-text (inline com a copy)
   — segue o fluxo do texto, sem ficar órfão no fim do flex container. */
.oft-hero__social-proof-arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-300);
  font-size: 14px;
  font-weight: 700;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
  vertical-align: -1px;
}
.oft-hero__avatar-stack { display: flex; align-items: center; }
.oft-hero__avatar-stack img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #c9a44c;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.oft-hero__avatar-stack img + img { margin-left: -10px; }
.oft-hero__social-proof-text {
  font-size: 13px;
  color: rgba(244,240,234,0.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.oft-hero__social-proof-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}

/* Bonus card */
.oft-hero__bonus-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 28px;
  transition: all .25s cubic-bezier(0.2,0.8,0.2,1);
  animation: oft-rise 0.8s 0.8s backwards cubic-bezier(0.2,0.8,0.2,1);
  max-width: 540px;
}
.oft-hero__bonus-card:hover {
  background: rgba(248,219,125,0.05);
  border-color: rgba(248,219,125,0.3);
  transform: translateY(-2px);
}
.oft-hero__bonus-thumb {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248,219,125,0.12), rgba(248,219,125,0.04));
  border: 1px solid rgba(248,219,125,0.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.oft-hero__bonus-thumb img { width: 90%; height: 90%; object-fit: contain; }
.oft-hero__bonus-body { flex: 1; min-width: 0; }
/* Bonus card text — !important pra blindar contra Elementor/tema que
   estava encolhendo o "Lente Volk + 2 livros físicos" */
.oft-hero .oft-hero__bonus-eyebrow {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(244,240,234,0.5) !important;
  margin: 0 0 4px !important;
  line-height: 1.2 !important;
}
.oft-hero .oft-hero__bonus-headline {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #F4F0EA !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-decoration: none !important;
}
.oft-hero .oft-hero__bonus-accent {
  color: var(--gold-200) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}
.oft-hero .oft-hero__bonus-sub {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 12px !important;
  color: rgba(244,240,234,0.5) !important;
  margin: 2px 0 0 !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
}
.oft-hero__bonus-arrow {
  flex: none;
  color: var(--gold-200);
  font-size: 22px;
  font-weight: 800;
  transition: transform .25s;
}
.oft-hero__bonus-card:hover .oft-hero__bonus-arrow { transform: translateX(4px); }

/* CTA */
.oft-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: oft-rise 0.8s 1s backwards cubic-bezier(0.2,0.8,0.2,1);
}
.oft-hero__cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(180deg, #F8DB7D 0%, #E5C26F 100%);
  color: #131210;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  box-shadow:
    0 14px 36px rgba(219,173,107,0.32),
    0 2px 0 rgba(167,127,68,0.6),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -2px 0 rgba(167,127,68,0.35);
  transition: all .25s cubic-bezier(0.2,0.8,0.2,1);
  overflow: hidden;
}
.oft-hero__cta-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left .8s;
}
.oft-hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 48px rgba(219,173,107,0.45),
    0 2px 0 rgba(167,127,68,0.6),
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -2px 0 rgba(167,127,68,0.35);
}
.oft-hero__cta-primary:hover::before { left: 120%; }
.oft-hero__cta-arrow { transition: transform .25s; font-weight: 800; }
.oft-hero__cta-primary:hover .oft-hero__cta-arrow { transform: translateX(4px); }

@keyframes oft-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== RIGHT STAGE ==================== */
.oft-hero__stage {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}
.oft-hero__stage-panel {
  position: relative;
  flex: 1;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(248,219,125,0.32), transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 90%, rgba(110,82,48,0.45), transparent 70%),
    linear-gradient(180deg, #3a2c18 0%, #1f1810 60%, #15110c 100%);
  border: 1px solid rgba(248,219,125,0.28);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(248,219,125,0.16);
  overflow: hidden;
  animation: oft-rise 0.9s 0.3s backwards cubic-bezier(0.2,0.8,0.2,1);
}
.oft-hero__stage-panel::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(248,219,125,0.22), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(219,173,107,0.20), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(180,130,70,0.18), transparent 45%);
  filter: blur(20px);
  animation: oft-aurora 18s ease-in-out infinite !important;
  pointer-events: none;
  z-index: 0;
}
.oft-hero__stage-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 2px at 12% 18%, rgba(248,219,125,0.6), transparent 60%),
    radial-gradient(circle 1.5px at 78% 22%, rgba(248,219,125,0.5), transparent 60%),
    radial-gradient(circle 1px at 32% 70%, rgba(248,219,125,0.55), transparent 60%),
    radial-gradient(circle 2px at 88% 80%, rgba(248,219,125,0.4), transparent 60%),
    radial-gradient(circle 1px at 55% 35%, rgba(248,219,125,0.5), transparent 60%),
    radial-gradient(circle 1.5px at 22% 88%, rgba(248,219,125,0.45), transparent 60%);
  animation: oft-particles 14s ease-in-out infinite !important;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
@keyframes oft-aurora {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  33%      { transform: translate(3%, -2%) scale(1.05); opacity: 1; }
  66%      { transform: translate(-2%, 3%) scale(0.98); opacity: 0.9; }
}
@keyframes oft-particles {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50%      { transform: translateY(-12px) translateX(6px); opacity: 1; }
}

.oft-hero__stage-pulse {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  width: 100%;
  height: 240px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.oft-hero__stage-pulse-path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation:
    oft-pulse-draw 4s 0.9s cubic-bezier(0.4, 0.1, 0.3, 1) forwards,
    oft-pulse-glow 3s 5s ease-in-out infinite;
}
@keyframes oft-pulse-draw { to { stroke-dashoffset: 0; } }
@keyframes oft-pulse-glow {
  0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 4px rgba(248,219,125,0.3)); }
  50%      { opacity: 1;   filter: drop-shadow(0 0 12px rgba(248,219,125,0.7)); }
}

.oft-hero__stage-marks {
  position: absolute;
  top: 16px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  animation: oft-rise 0.9s 0.5s backwards cubic-bezier(0.2,0.8,0.2,1);
}
.oft-hero__stage-extensive {
  width: 130px;
  filter: drop-shadow(0 8px 24px rgba(255,107,92,0.35));
}
.oft-hero__mascot-slot {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  animation: oft-mascot-float 4s ease-in-out infinite !important;
  pointer-events: none;
}
.oft-hero__mascot-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(248,219,125,0.35));
}
@keyframes oft-mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

/* Aprovados duo */
.oft-hero__aprovados-row {
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.oft-hero__aprovados-duo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation: oft-aprovado-rise 0.9s 0.4s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
@keyframes oft-aprovado-rise {
  to { opacity: 1; transform: translateY(0); }
}
.oft-hero__aprovados-duo img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.5) 93%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.5) 93%, transparent 100%);
}
.oft-hero__aprovados-halo {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(248,219,125,0.18), rgba(219,173,107,0.06) 40%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

/* Feature chips */
.oft-hero__feature-chips {
  position: absolute;
  left: 0; right: 0;
  bottom: 16px;
  z-index: 4;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px;
  animation: oft-rise 0.9s 1.1s backwards cubic-bezier(0.2,0.8,0.2,1);
}
.oft-hero__feature-chip {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(244,240,234,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all .2s;
  cursor: default;
  animation: oft-chip-pulse 8s infinite !important;
  animation-fill-mode: both;
}
.oft-hero__feature-chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
/* Chips com delays sequenciais.
   Shorthand `animation` aceita delay como 2º valor de tempo após duration.
   Combinado com !important pra Elementor não strippar (estavam acendendo
   todos juntos porque o `animation-delay` separado era removido). */
.oft-hero__feature-chip--c1 { animation: oft-chip-pulse 8s 0s infinite !important; }
.oft-hero__feature-chip--c2 { animation: oft-chip-pulse 8s 2s infinite !important; }
.oft-hero__feature-chip--c3 { animation: oft-chip-pulse 8s 4s infinite !important; }
.oft-hero__feature-chip--c4 { animation: oft-chip-pulse 8s 6s infinite !important; }
@keyframes oft-chip-pulse {
  0%   { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(244,240,234,0.85); box-shadow: none; transform: translateY(0); }
  4%   { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(244,240,234,0.85); box-shadow: none; transform: translateY(0); }
  7%   { background: linear-gradient(135deg, #F8DB7D, #DBAD6B); border-color: transparent; color: #131210; box-shadow: 0 10px 28px rgba(219,173,107,0.4); transform: translateY(-2px); }
  20%  { background: linear-gradient(135deg, #F8DB7D, #DBAD6B); border-color: transparent; color: #131210; box-shadow: 0 10px 28px rgba(219,173,107,0.4); transform: translateY(-2px); }
  24%  { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(244,240,234,0.85); box-shadow: none; transform: translateY(0); }
  100% { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(244,240,234,0.85); box-shadow: none; transform: translateY(0); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1180px) {
  .oft-hero__main { padding: 24px 32px 56px; }
  .oft-hero .oft-hero__h1 { font-size: 32px !important; }
  .oft-hero__stage-extensive { width: 140px; }
  .oft-hero__mascot-slot { width: 54px; height: 68px; }
}
/* ──────────────────────────────────────────────────────────────────
   Hamburger button + mobile menu (visível só < 980px)
   ────────────────────────────────────────────────────────────────── */
.oft-hero__nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  background: transparent !important;
  border: 1px solid rgba(248,219,125,0.3) !important;
  border-radius: 8px !important;
  color: var(--gold-200) !important;
  cursor: pointer !important;
  transition: background 200ms ease, border-color 200ms ease;
}
.oft-hero__nav-toggle:hover {
  background: rgba(248,219,125,0.08) !important;
  border-color: var(--gold-300) !important;
}
.oft-hero__nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}
.oft-hero__nav-toggle-bars::before,
.oft-hero__nav-toggle-bars::after,
.oft-hero__nav-toggle-bars > span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
}
.oft-hero__nav-toggle-bars::before { top: 0; }
.oft-hero__nav-toggle-bars > span { top: 50%; transform: translateY(-50%); }
.oft-hero__nav-toggle-bars::after { bottom: 0; }
.oft-hero__nav-toggle[aria-expanded="true"] .oft-hero__nav-toggle-bars::before {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.oft-hero__nav-toggle[aria-expanded="true"] .oft-hero__nav-toggle-bars > span { opacity: 0; }
.oft-hero__nav-toggle[aria-expanded="true"] .oft-hero__nav-toggle-bars::after {
  bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 980px) {
  .oft-hero__nav { padding: 18px 24px; }
  .oft-hero__nav-toggle { display: inline-flex; }
  .oft-hero__nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(248,219,125,0.18);
    z-index: 40;
    animation: oft-menu-drop 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .oft-hero__nav[data-menu-open="true"] .oft-hero__nav-links { display: flex; }
  .oft-hero__nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
    color: rgba(255,255,255,0.85);
  }
  .oft-hero__nav-links a:last-child { border-bottom: none; }
  .oft-hero__nav-links a.is-active { color: var(--gold-200); }
  @keyframes oft-menu-drop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .oft-hero__main { padding: 24px 24px 64px; }
  .oft-hero__inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .oft-hero__stage { min-height: 560px; }
  .oft-hero__stage-extensive { width: 130px; }
  .oft-hero__mascot-slot { width: 50px; height: 64px; }
  .oft-hero .oft-hero__h1 { font-size: 30px !important; }
}

@media (max-width: 640px) {
  .oft-hero .oft-hero__h1 { font-size: 30px !important; line-height: 1.2 !important; }
  .oft-hero__cta-primary { padding: 16px 24px; font-size: 14px; width: 100%; justify-content: center; }
  .oft-hero__stage { min-height: 460px; }
  .oft-hero__aprovados-row { top: 70px; bottom: 80px; }

  /* Social-proof compacto no mobile — avatars menores, texto +
     seta integrados, badge mais discreto */
  .oft-hero__social-proof {
    gap: 10px;
    padding: 4px 12px 4px 4px;
  }
  .oft-hero__avatar-stack img {
    width: 30px;
    height: 30px;
  }
  .oft-hero__social-proof-text {
    font-size: 12.5px;
    line-height: 1.35;
  }

  /* Chips em grid 2×2 */
  .oft-hero__feature-chips {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 24px;
    max-width: 320px;
    margin: 0 auto;
    left: 0; right: 0;
  }
  .oft-hero__feature-chip {
    text-align: center;
    justify-content: center;
  }
}

