/* ============================================
   GENERAL SANS — local webfont
   ============================================ */
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Light.woff2') format('woff2'),
       url('../assets/fonts/GeneralSans-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('../assets/fonts/GeneralSans-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('../assets/fonts/GeneralSans-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('../assets/fonts/GeneralSans-Semibold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Bold.woff2') format('woff2'),
       url('../assets/fonts/GeneralSans-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans VF';
  src: url('../assets/fonts/GeneralSans-Variable.woff2') format('woff2-variations'),
       url('../assets/fonts/GeneralSans-Variable.woff') format('woff-variations');
  font-weight: 200 700; font-style: normal; font-display: swap;
}

/* ============================================
   APPLE-INSPIRED DARK THEME
   ============================================ */
:root {
  /* === Paleta oficial BMAi (Mataco Studio IDV) === */
  --bg: #0d1b2a;        /* Azul primário ⭐ */
  --bg-2: #162534;      /* Azul surface */
  --bg-3: #202f3f;      /* Azul surface hover */
  --bg2: #0d1b2a;       /* alias legado */
  --orange: #db5500;    /* Laranja primário ⭐ */
  --orange-d: #c84d01;  /* Laranja hover/active */
  --orange-dd: #a53e00; /* Laranja ênfase/depth */
  --orange-l: #e87030;  /* Variação clara estética (fora do IDV, mantida) */
  --white: #ede7e1;     /* Off-white primário ⭐ */
  --gray1: #798086;     /* Cinza quente primário ⭐ — texto secondary */
  --gray2: #9da4ab;     /* Cinza oficial shade 4 — muted/disabled */
  --glass: rgba(255,255,255,.03);
  --glass-border: rgba(255,255,255,.06);
  --glass-h: rgba(255,255,255,.05);
  /* Tipografia — General Sans */
  --ff: 'General Sans', system-ui, -apple-system, sans-serif;
  --fp: 'General Sans', system-ui, sans-serif;
  --fd: 'General Sans', system-ui, sans-serif;
  --fm: 'General Sans', system-ui, sans-serif;
  --mono: 'General Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --hdr: 56px;
  --r: 20px;
  --r-sm: 14px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Scrollbar — paleta BMAI */
* { scrollbar-width: thin; scrollbar-color: #db5500 #0d1b2a; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0d1b2a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #db5500, #ff7a2a, #db5500);
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(219,85,0,.4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ff7a2a, #db5500);
  box-shadow: 0 0 14px rgba(219,85,0,.7);
}
::-webkit-scrollbar-corner { background: #0d1b2a; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 84px;
}
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.mono { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ============================================
   GLASS CARD — Apple frosted glass
   ============================================ */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  backdrop-filter: blur(40px) saturate(120%);
  transition: all .4s var(--ease);
}
.glass-card:hover {
  background: var(--glass-h);
  border-color: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 0 40px rgba(219,85,0,.04);
}

/* ============================================
   PRELOADER — Apple spinner
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__spinner {
  width: 28px; height: 28px; border: 2px solid var(--glass-border);
  border-top-color: var(--orange); border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 10000;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  width: 0; transition: width .06s linear;
  box-shadow: 0 0 12px rgba(219,85,0,.4), 0 0 4px rgba(219,85,0,.6);
}

/* ============================================
   BUTTONS — Apple pill style
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 980px; font-family: var(--ff);
  font-weight: 600; font-size: .86rem; border: none; cursor: pointer;
  transition: all .3s var(--ease); white-space: nowrap; letter-spacing: -.01em;
}
.btn:active { transform: scale(.96) !important; transition-duration: .1s; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 0 20px rgba(219,85,0,.15); }
.btn--primary:hover { background: var(--orange-l); transform: translateY(-1px); box-shadow: 0 4px 24px rgba(219,85,0,.35), 0 0 48px rgba(219,85,0,.12); }
.btn--glass { background: var(--glass); color: var(--white); border: 1px solid var(--glass-border); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.btn--glass:hover { background: var(--glass-h); border-color: rgba(255,255,255,.12); }
.btn--lg { padding: 14px 30px; font-size: .9rem; }
.btn--xl { padding: 16px 36px; font-size: .94rem; }

/* ============================================
   TAG
   ============================================ */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 7px 16px;
  border: 1px solid rgba(219,85,0,.25);
  border-radius: 100px;
  background: rgba(219,85,0,.06);
}

/* ============================================
   SECTION
   ============================================ */
section {
  position: relative;
  z-index: 1;
  display: block;
  isolation: isolate;       /* cada section tem seu próprio stacking context — evita overlay entre elas */
  scroll-margin-top: 80px;  /* header fixo não cobre âncoras */
}
/* Padding vertical padronizado — respira generoso entre seções */
.section { padding: 128px 0; }
@media (max-width: 768px) {
  .section { padding: 80px 0; }
}
/* Margem extra entre seções consecutivas — evita visual colado */
section + section,
section + .section,
.section + section { margin-top: 32px; }
@media (max-width: 768px) {
  section + section,
  section + .section,
  .section + section { margin-top: 16px; }
}

/* scrollbar-gutter: stable evita layout shift em qualquer contexto */
html { scrollbar-gutter: stable; }
.section--alt { background: var(--bg2); }
.section__center { text-align: center; margin-bottom: 28px; }
.section__title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -.03em; color: var(--white);
}
.section__sub {
  font-size: .96rem; color: var(--gray1); line-height: 1.7;
  max-width: 480px; margin: 16px auto 0; font-weight: 400;
}

/* ============================================
   QUEM SOMOS — dois pilares
   ============================================ */
#quem-somos { padding: 0; }
#quem-somos .section__center { margin-bottom: 32px; }

/* Pinned section — 2 padrões mutuamente exclusivos por device:

   Desktop (hover + pointer fine): section 100vh fixo, scroll-hijack via JS
   trata a "trava" — sem sticky, sem tall-section (evita layout shift).

   Touch/reduced-motion (fallback): section 400vh + sticky 100vh — progress
   scroll-linked natural via IntersectionObserver no main.js. */
/* QS e Método: seções normais, height auto, padding padrão do .section */
#quem-somos .section__title {
  font-size: clamp(2.25rem, 3.8vw, 3.2rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.qs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.qs__pillar {
  position: relative;
  padding: 48px 40px 40px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.qs__pillar:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 40px rgba(219, 85, 0, 0.15);
}

/* Número gigante — marca d'água decorativa, canto superior direito */
.qs__num {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: inherit;
  font-size: 96px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.22;
  line-height: 1;
  letter-spacing: -.04em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Divisor laranja acima do título */
.qs__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px;
}

.qs__title {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.qs__desc {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 400;
  max-width: 52ch;
}

@media (max-width: 768px) {
  #quem-somos { padding: 80px 0; }
  #quem-somos .section__center { margin-bottom: 48px; }
  .qs__grid { grid-template-columns: 1fr; gap: 20px; }
  .qs__pillar { padding: 36px 28px 28px; }
  .qs__num { font-size: 64px; top: 12px; right: 20px; }
  .qs__bar { width: 40px; height: 2px; margin-bottom: 16px; }
  .qs__title { font-size: 1.35rem; }
  .qs__desc { font-size: .95rem; }
}

/* ============================================
   HEADER — Apple frosted nav
   ============================================ */
.header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  pointer-events: none;
  transition: top .3s var(--ease);
}
.header > * { pointer-events: auto; }
.header.scrolled { top: 12px; }

.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0 14px 0 6px;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img { display: block; height: 22px; width: auto; opacity: .95; }
.nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  margin: 0 6px;
}

/* ============================================
   FLOATING NAV — glassmorphism pill
   ============================================ */
.floatnav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  backdrop-filter: blur(25px) saturate(180%);
  box-shadow:
    0 10px 30px -10px rgba(0,0,0,.5),
    0 4px 12px -4px rgba(0,0,0,.4),
    inset 0 1px 1px rgba(255,255,255,.08);
  animation: floatNavIn .6s var(--spring) both;
}
@keyframes floatNavIn {
  from { opacity: 0; transform: translateY(-12px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.floatnav__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--gray1);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .005em;
  white-space: nowrap;
  position: relative;
  transition: padding .45s var(--spring), color .3s ease, background .3s ease;
}
.floatnav__item:hover {
  color: #fff;
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255,255,255,.04);
}
.floatnav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  opacity: 0;
  transform: scale(.4);
  overflow: hidden;
  color: var(--orange);
  transition: width .45s var(--spring), opacity .35s ease, transform .45s var(--spring), margin-right .45s var(--spring);
}
.floatnav__item:hover .floatnav__icon {
  width: 22px;
  opacity: 1;
  transform: scale(1);
  margin-right: 8px;
}

.floatnav__item::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 12px rgba(219,85,0,.6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--spring);
}
.floatnav__item:hover::after,
.floatnav__item.active::after { transform: scaleX(1); }

/* CTA Shimmer */
.floatnav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
  margin-left: 10px;
  background: rgba(15,15,15,.85);
  border: 1px solid rgba(219,85,0,.5);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s var(--ease);
}
.floatnav__cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(219,85,0,.3) 25%,
    rgba(255,255,255,.95) 50%,
    rgba(219,85,0,.3) 75%,
    transparent 100%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.floatnav__cta:hover::before {
  opacity: 1;
  animation: floatnavShimmer 2s linear infinite;
}
@keyframes floatnavShimmer {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

.floatnav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-l), var(--orange));
  color: #fff;
  flex-shrink: 0;
  transition: width .3s var(--ease);
  position: relative;
  z-index: 2;
}
.floatnav__cta:hover .floatnav__cta-icon {
  width: calc(100% - 10px);
}
.floatnav__cta:hover .floatnav__cta-icon svg {
  animation: floatnavArrow 1s ease-in-out infinite;
}
@keyframes floatnavArrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.floatnav__cta-text {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  margin: 0 18px 0 12px;
  white-space: nowrap;
  z-index: 1;
  transition: opacity .3s, transform .3s;
}
.floatnav__cta:hover .floatnav__cta-text {
  opacity: 0;
  transform: translateX(20px);
}

/* Burger — Apple 2-line style */
.header__burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.header__burger span { display: block; width: 18px; height: 1.5px; background: var(--white); transition: all .3s var(--ease); }
.header__burger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.header__burger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: min(100svh, 100vh);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  padding: calc(var(--hdr) + 60px) 0 96px;
  overflow: hidden;
  /* Fundo multi-layer: overlay escuro na esquerda + top/bottom fade + imagem + cor base */
  background:
    linear-gradient(90deg,
      rgba(13, 27, 42, .92) 0%,
      rgba(13, 27, 42, .55) 38%,
      rgba(13, 27, 42, 0)   68%),
    linear-gradient(180deg,
      rgba(13, 27, 42, .25) 0%,
      transparent 25%,
      transparent 75%,
      rgba(13, 27, 42, .45) 100%),
    url('../assets/images/hero-bg.jpg') right 70% / cover no-repeat,
    #0d1b2a;
}
@media (max-width: 900px) {
  .hero {
    /* Mobile: overlay vertical mais forte (texto precisa ser 100% legível),
       imagem posicionada pra mostrar o símbolo 3D na parte superior direita */
    background:
      linear-gradient(180deg,
        rgba(13, 27, 42, .88) 0%,
        rgba(13, 27, 42, .6)  40%,
        rgba(13, 27, 42, .92) 100%),
      url('../assets/images/hero-bg.jpg') 75% 25% / 200% auto no-repeat,
      #0d1b2a;
    /* Safe-area pra notch/rounded corners de iOS */
    padding-left:  max(env(safe-area-inset-left), 0);
    padding-right: max(env(safe-area-inset-right), 0);
    padding-bottom: max(72px, env(safe-area-inset-bottom));
  }
}
#hero .container.hero__wrap {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding-left: clamp(40px, 7vw, 110px);
  padding-right: 0;
}

/* Imagem 3D close-up — lado direito do hero (visível só em mobile, oculto em desktop) */
@media (min-width: 769px) {
  .hero-visual { display: none !important; }
}
.hero-visual {
  position: absolute;
  right: -8%;
  top: 32%;                  /* subido mais — alinhado com o H1 do hero */
  transform: translateY(-50%);
  width: min(75vw, 960px);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: heroFloat 9s ease-in-out infinite;
  animation-play-state: paused;
}
.hero-visual.entered { animation-play-state: running; }
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.4) saturate(1.6) contrast(1.1);
  opacity: 1 !important;
}

/* Glow laranja pulsando atrás da imagem */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 65%;
  width: 52%; height: 52%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(219,85,0,.28) 0%,
    rgba(219,85,0,.1) 40%,
    rgba(219,85,0,.02) 65%,
    transparent 78%);
  z-index: 0;
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite;
  filter: blur(20px);
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: .8; }
  50%      { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}

/* Fade lateral esquerdo (legibilidade do texto) — suave */
.hero-visual-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right,
    #0d1b2a 0%,
    #0d1b2a 40%,
    rgba(13,27,42,.85) 55%,
    rgba(13,27,42,.3) 72%,
    transparent 88%);
}
/* Fade vertical sutil (topo + base) */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #0d1b2a 0%, transparent 18%),
    linear-gradient(to top,    #0d1b2a 0%, rgba(13,27,42,.6) 10%, transparent 28%);
}
/* Reforço suave na base do hero */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(to top, #0d1b2a 0%, rgba(13,27,42,.55) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(calc(-50% - 16px)) scale(1.015); }
}

/* Proteção do texto à esquerda */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
    #0d1b2a 0%,
    #0d1b2a 65%,
    transparent 100%);
}

.hero__wrap { position: relative; z-index: 2; }
.hero__content {
  max-width: 640px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-bottom: clamp(60px, 8vw, 100px);
  text-align: left;
}
.hero__content .hero__title { max-width: 600px; }
.hero__content .hero__sub { max-width: 620px; }
#hero .hero__content,
#hero .hero__title,
#hero .hero__sub,
#hero .hero__badge { text-align: left !important; margin-left: 0 !important; }
#hero .hero__ctas {
  display: flex; flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap; gap: 12px;
}
.hero__badge {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); padding: 8px 18px;
  border: 1px solid rgba(219,85,0,.25); border-radius: 980px;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px; background: rgba(219,85,0,.06);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.hero__title {
  display: flex; flex-direction: column;
  font-size: clamp(28px, 3.6vw, 48px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.03em; color: var(--white);
  margin-bottom: 26px;
  text-align: left;
}
.hero__title .h-line { display: block; }
.hero__highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-l), #ff9a56, var(--orange));
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__sub {
  font-size: .8rem; color: var(--gray1); line-height: 1.6;
  max-width: 560px; margin-bottom: 32px; font-weight: 700;
  letter-spacing: .005em;
  animation: fadeUp .6s var(--ease) .5s both;
}
/* Sub em exatamente 2 linhas: cada span é uma linha que não quebra */
.hero__sub--2lines {
  max-width: none !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .72rem;
  letter-spacing: .04em;
}
.hero__sub-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero__sub--2lines {
    font-size: .65rem;
    letter-spacing: .02em;
  }
}
@media (max-width: 640px) {
  .hero__sub--2lines {
    font-size: 2.4vw;     /* escala proporcional pra caber em 2 linhas no mobile */
    letter-spacing: 0;
  }
}
.hero__ctas { display: flex; gap: 12px; justify-content: flex-start; animation: fadeUp .6s var(--ease) .7s both; }

/* Stats — pill centralizada (no fluxo) */
.hero__stats {
  position: relative;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 0;
}
#hero .container.hero__stats-row {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: max-content;
  max-width: 92vw;
  margin: 0;
  padding: 26px 60px;
  background:
    linear-gradient(180deg, rgba(20,34,54,.92) 0%, rgba(10,20,34,.96) 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.hero__stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 44px;
}
.hero__stat-value {
  font-family: var(--mono);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(219,85,0,.2);
}
.hero__stat-label {
  font-size: 12px;
  color: var(--gray1);
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hero__stat-sep { width: 1px; height: 56px; background: rgba(255,255,255,.12); flex-shrink: 0; }

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

/* ============================================
   ICON CIRCLE — Apple icon bg
   ============================================ */
.icon-circle {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(219,85,0,.06); border: 1px solid rgba(219,85,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(219,85,0,.06);
  transition: all .3s var(--ease);
}
.glass-card:hover .icon-circle {
  box-shadow: 0 0 28px rgba(219,85,0,.12);
  background: rgba(219,85,0,.1);
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  padding: 28px 0; overflow: hidden; position: relative;
  contain: layout paint; /* isola repaint do scroll infinito */
  margin: 0;             /* ticker compacto — logos já têm respiração própria */
}
.ticker::before, .ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker__track { display: flex; align-items: center; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { font-size: .82rem; font-weight: 500; color: var(--gray2); white-space: nowrap; }
.ticker__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); opacity: .4; margin: 0 16px; flex-shrink: 0; }
.ticker__track--logos { animation-duration: 30s; }
.ticker__track--logos .ticker__dot { margin: 0 40px; }
.ticker__logo { display: inline-flex; align-items: center; justify-content: center; width: 260px; height: 100px; padding: 0 14px; flex-shrink: 0; }
.ticker__logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
}
.ticker__logo--luciana { width: 360px; }
.ticker__logo--luciana img { transform: scale(1.7); filter: brightness(0) invert(1); }
.ticker__logo--ocanto img { filter: brightness(0) invert(1); }
.ticker__logo--white img { filter: brightness(0) invert(1); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   HERO TYPEWRITER
   ============================================ */
.h-line {
  display: block;
  white-space: nowrap;
}
/* Especificidade alta pra não competir com .hero__title color */
.hero__title .hero-resultado,
.hero-resultado {
  color: var(--orange);
  font-style: normal;
  animation: pulse-glow 2s ease-in-out infinite;
  will-change: opacity, text-shadow;
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 22px rgba(219, 85, 0, 0.75),
      0 0 48px rgba(219, 85, 0, 0.35);
  }
  50% {
    opacity: 0.35;
    text-shadow:
      0 0 6px rgba(219, 85, 0, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-resultado { animation: none; opacity: 1; }
}

/* ============================================
   PROBLEMA — NOTIF PANEL
   ============================================ */
.pb__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pb__text .section__title { text-align: left; }
.pb__desc { font-size: .94rem; color: var(--gray1); line-height: 1.75; max-width: 420px; margin-bottom: 24px; font-weight: 400; }
.pb__callout {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-left: 2px solid var(--orange); background: rgba(219,85,0,.03);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: .86rem; color: var(--gray1);
}
.pb__callout svg { color: var(--orange); flex-shrink: 0; }

/* Panel */
.pb__panel {
  background: #14283d; border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; height: 380px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.pb__panel-bar {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.pb__dots { display: flex; gap: 6px; }
.pb__dot { width: 10px; height: 10px; border-radius: 50%; }
.pb__dot--red { background: #ff5f57; }
.pb__dot--yellow { background: #febc2e; }
.pb__dot--green { background: #28c840; }
.pb__panel-title { font-size: .66rem; color: var(--gray2); margin-left: 4px; }
.pb__badge {
  margin-left: auto; font-family: var(--mono); font-size: .6rem;
  background: var(--orange); color: #fff; padding: 2px 10px;
  border-radius: 980px; font-weight: 700; letter-spacing: .02em;
}
.pb__stream {
  flex: 1; overflow: hidden; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 6%, black 86%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 6%, black 86%, transparent);
}

/* Notification item */
.pb__notif {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.04);
  border-radius: 10px; opacity: 0; transform: translateY(-10px);
  animation: notifSlide .4s var(--ease) forwards; position: relative; flex-shrink: 0;
}
@keyframes notifSlide { to { opacity: 1; transform: translateY(0); } }
.pb__notif-time { font-family: var(--mono); font-size: .62rem; color: var(--orange); white-space: nowrap; padding-top: 2px; min-width: 36px; }
.pb__notif-body { flex: 1; }
.pb__notif-app { font-family: var(--mono); font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray2); margin-bottom: 2px; }
.pb__notif-msg { font-size: .8rem; color: var(--gray1); line-height: 1.5; font-weight: 400; }
.pb__notif-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 8px rgba(219,85,0,.3); }

/* ============================================
   VERSUS
   ============================================ */
.versus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.versus__col { padding: 36px 32px; }
.versus__col h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 24px; }
.versus__col--old h3 { color: var(--gray2); }
.versus__col--new h3 { color: var(--orange); }
.versus__col--new { border-color: var(--glass-border); position: relative; overflow: hidden; }
.versus__col--new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(219,85,0,.07), transparent 70%);
  pointer-events: none;
  animation: vsGlow 4s ease-in-out infinite;
}
@keyframes vsGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.versus__col--new li { transition: color .2s, transform .2s, padding-left .2s; }
.versus__col--new li:hover { color: var(--white); transform: translateX(6px); padding-left: 4px; }
.versus__col--new li:hover .li-icon { color: var(--orange-l); }
.versus__col li {
  padding: 12px 0; border-bottom: 1px solid var(--glass-border);
  font-size: .88rem; color: var(--gray1); display: flex; gap: 12px; align-items: center; font-weight: 400;
}
.versus__col li:last-child { border-bottom: none; }
.li-icon { flex-shrink: 0; }
.li-icon--x { color: rgba(255,60,60,.6); }
.li-icon--check { color: var(--orange); }

/* ============================================
   ARIA METHOD — flow diagram
   ============================================ */
#metodo {
  padding: 128px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}
#metodo > * { position: relative; z-index: 1; }
@keyframes ariaFloat {
  0%,100% { transform: translate(0,0) scale(1); opacity: .55; }
  50%     { transform: translate(30px,-20px) scale(1.08); opacity: .75; }
}
/* subtle grid shimmer overlay */
#metodo .aria-hdr::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  margin: 18px auto 0;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 18px rgba(219,85,0,.9), 0 0 32px rgba(219,85,0,.5);
  animation: ariaPulse 2.4s ease-in-out infinite;
}
@keyframes ariaPulse {
  0%,100% { opacity: .6; transform: scaleX(.85); }
  50%     { opacity: 1;  transform: scaleX(1.15); }
}
.aria-hdr { position: relative; }
.aria-hdr { text-align: center; margin-bottom: 36px; }

/* Método: esconde os 4 nodes DEIA pequenos — cards auto-ciclam sem navegação manual */
.aria-flow { display: none !important; }

/* Garante que o detail panel fique sempre aberto (o JS cicla o conteúdo) */
#metodo .aria-detail { max-height: none !important; opacity: 1 !important; }
.aria-sub {
  font-size: 15px;
  color: #888;
  text-align: center;
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.75;
}

.aria-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.aria-flow::-webkit-scrollbar { display: none; }

.aria-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  outline: none;
}
.aria-node:focus-visible .aria-node-inner {
  box-shadow:
    0 0 0 3px rgba(219, 85, 0, .25),
    0 0 20px rgba(219, 85, 0, 0.35);
}
.aria-node-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 30% 25%, #1e2d40 0%, #0d1b2a 70%);
  box-shadow: 0 0 22px rgba(219,85,0,.18), inset 0 0 14px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  z-index: 1;
  transition: border-color .4s, background .4s, box-shadow .4s, transform .4s cubic-bezier(.16,1,.3,1);
}
.aria-node:hover .aria-node-inner,
.aria-node.active .aria-node-inner {
  border-color: var(--orange);
  background: rgba(219,85,0,0.08);
  box-shadow:
    0 0 0 6px rgba(219,85,0,0.08),
    0 0 20px rgba(219,85,0,0.25);
  transform: scale(1.06);
}
.aria-node:hover .aria-node-letter,
.aria-node.active .aria-node-letter {
  color: var(--orange);
  text-shadow: 0 0 14px rgba(219,85,0,.9), 0 0 28px rgba(255,122,42,.6);
}
.aria-conn-line {
  stroke-dashoffset: 0;
  animation: ariaDash 1.6s linear infinite;
}
@keyframes ariaDash { to { stroke-dashoffset: -20; } }
.aria-node-letter {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  line-height: 1;
  letter-spacing: -.02em;
  transition: color .4s;
}
.aria-node:hover .aria-node-letter,
.aria-node.active .aria-node-letter { color: var(--orange); }
.aria-node-num {
  font-family: var(--fm);
  font-size: 9px;
  color: #666;
  letter-spacing: .1em;
  transition: color .4s;
}
.aria-node:hover .aria-node-num,
.aria-node.active .aria-node-num { color: var(--orange); }
.aria-node-label {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
  transition: color .4s;
}
.aria-node:hover .aria-node-label,
.aria-node.active .aria-node-label { color: var(--white); }

.aria-connector {
  flex: 1;
  min-width: 60px;
  max-width: 140px;
  height: 24px;
  position: relative;
  margin-bottom: 28px;
}
.aria-connector-svg { width: 100%; height: 100%; }
.aria-conn-line {
  stroke: rgba(219,85,0,.3);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  fill: none;
}
.aria-conn-dot {
  fill: var(--orange);
  filter: drop-shadow(0 0 3px rgba(219,85,0,.8));
}

.aria-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.16,1,.3,1);
}
.aria-detail.open { max-height: 700px; }
.aria-detail-inner {
  padding: 40px;
  border: 1px solid rgba(219,85,0,.2);
  border-radius: 20px;
  background: linear-gradient(180deg, #162534 0%, #0d1b2a 100%);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease .1s, transform .5s cubic-bezier(.16,1,.3,1) .1s;
}
.aria-detail.open .aria-detail-inner { opacity: 1; transform: translateY(0); }
.aria-detail-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219,85,0,.7) 30%, #ff7a2a 50%, rgba(219,85,0,.7) 70%, transparent);
  box-shadow: 0 0 10px rgba(219,85,0,.4);
}

.aria-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.aria-detail-num {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: .14em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aria-detail-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(219,85,0,.3), transparent);
}
.aria-detail-letter {
  font-family: var(--fd);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 700;
  color: rgba(219,85,0,.07);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: -10px;
  user-select: none;
}
.aria-detail-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.aria-detail-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.aria-detail-desc {
  font-size: 14.5px;
  color: #888;
  line-height: 1.85;
  letter-spacing: -.005em;
}
.aria-detail-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0;
}
.aria-detail-bullets li {
  font-size: 14px;
  color: #c9c9c9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.aria-detail-bullets li::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}
.aria-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
  gap: 10px;
}
.aria-detail-tag {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--orange);
  border: 1px solid rgba(219,85,0,.25);
  border-radius: 6px;
  padding: 5px 12px;
  background: rgba(219,85,0,.06);
}
/* Barra de carregamento — preenche 2.3s sincronizado com auto-cycle do Método */
.aria-detail-progress {
  margin-top: 16px;
  width: 100%;
  height: 3px;
  background: rgba(255, 107, 26, .12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.aria-detail-progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #db5500 0%, #ff6b1a 50%, #ffa866 100%);
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(255, 107, 26, .55);
  animation: ariaProgressFill 2.3s linear forwards;
}
@keyframes ariaProgressFill {
  from { width: 0; }
  to   { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .aria-detail-progress__bar { animation: none; width: 100%; }
}

.aria-detail-time {
  font-family: var(--fm);
  font-size: 10px;
  color: #888;
  letter-spacing: .06em;
}
.aria-detail-result {
  font-size: 12px;
  color: #b8b8b8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 6px;
}
.aria-detail-result::before {
  content: '✓';
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 768px) {
  .aria-flow { gap: 0; padding: 10px 0 32px; justify-content: flex-start; }
  .aria-node-inner { width: 64px; height: 64px; }
  .aria-node-letter { font-size: 22px; }
  .aria-node-label  { font-size: 10px; }
  .aria-connector { min-width: 32px; max-width: 60px; }
  .aria-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .aria-detail-inner { padding: 24px 20px; }
}

/* ============================================
   RESULTADOS
   ============================================ */
.resultados__grid { display: flex; justify-content: center; gap: 64px; margin-top: 48px; }
.resultados__item { text-align: center; }
.resultados__num {
  font-family: var(--mono); font-size: clamp(3.5rem, 5.5vw, 4.5rem);
  font-weight: 700; color: var(--orange); line-height: 1;
  text-shadow: 0 0 40px rgba(219,85,0,.2);
}
.resultados__item p { font-size: .86rem; color: var(--gray1); margin-top: 8px; font-weight: 400; }

/* ============================================
   PERSONAS
   ============================================ */
.personas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.personas__card { padding: 32px 26px; }
.personas__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(219,85,0,.05); border: 1px solid rgba(219,85,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 18px;
}
.personas__card h3 { font-size: .96rem; font-weight: 600; margin-bottom: 10px; }
.personas__card p { font-size: .84rem; color: var(--gray1); line-height: 1.7; margin-bottom: 14px; font-weight: 400; }
.personas__fit { font-size: .66rem; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================
   TEAM — flip cards (GSAP scroll)
   ============================================ */
#para-quem { position: relative; z-index: 1; isolation: isolate; }
.team-header { padding: 48px 0 20px; text-align: center; }
.team-scroll-hint {
  display: inline-block;
  font-size: 11px;
  color: var(--gray1);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 18px;
}

.team-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 48px;
  contain: layout; /* isola layout — scroll-triggered flips dos cards */
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 32px;
  max-width: 820px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
.team-card-wrap {
  perspective: 1200px;
  aspect-ratio: 3 / 4.6;
}
.team-card {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
  cursor: pointer;
}
.team-card-wrap.flipped .team-card,
.team-card-wrap:focus-within .team-card { transform: rotateY(180deg); }
.team-card-wrap:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 18px; }
/* Mata sticky-hover em telas touch */
@media (hover: none) and (pointer: coarse) {
  .team-card-wrap:focus-within .team-card { transform: none; }
  .team-card-wrap.flipped .team-card { transform: rotateY(180deg); }
}

.tc-front,
.tc-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.tc-front {
  background: var(--bg2);
}
.tc-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tc-front-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
}
.tc-front-info h3 {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 4px;
}
.tc-front-info span {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.tc-back {
  background: #07121d;
  transform: rotateY(180deg);
}
.tc-back-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.tc-back-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  overflow: hidden;
}
.tc-back-content p {
  flex: 1 1 auto;
  overflow: visible;
}
.tc-quotes {
  font-size: 46px;
  color: var(--orange);
  line-height: .6;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
.tc-back-content p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  letter-spacing: -.005em;
  flex: 1 1 auto;
  margin-top: 10px;
}
.tc-back-footer { padding-top: 20px; }
.tc-back-bar {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 14px;
  box-shadow: 0 0 8px rgba(219,85,0,.5);
}
.tc-back-footer strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
}
.tc-back-footer span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray1);
  margin-top: 4px;
  display: block;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .team-pin { padding: 40px 0; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto { padding: clamp(72px, 10vw, 140px) 0; text-align: center; }
.manifesto__inner { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.manifesto__line {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  line-height: 1.15; letter-spacing: -.03em;
}
.manifesto__line.revealed { opacity: 1; transform: translateY(0); }
.manifesto__line--sm { font-size: clamp(.92rem, 1.1vw, 1.06rem); color: var(--gray1); font-weight: 300; }
.manifesto__line--lg { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); }
.manifesto__line--xl { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 800; }
.manifesto__line--accent { color: var(--orange) !important; text-shadow: 0 0 60px rgba(219,85,0,.25), 0 0 120px rgba(219,85,0,.1); }

/* ============================================
   CTA
   ============================================ */
.cta .section__sub { margin-bottom: 32px; }
.cta__actions { margin-top: 28px; }

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 640px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--glass-border); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--ff); font-size: .92rem; font-weight: 500;
  color: var(--white); text-align: left; gap: 16px; transition: color .2s ease;
}
.faq__q:hover { color: var(--orange); }
.faq__chevron { color: var(--gray2); transition: transform .3s var(--ease), color .2s ease; flex-shrink: 0; }
.faq__item.active .faq__chevron { transform: rotate(180deg); color: var(--orange); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__item.active .faq__a { max-height: 800px; }
.faq__a p { padding-bottom: 20px; font-size: .88rem; color: var(--gray1); line-height: 1.75; font-weight: 400; }

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER — watermark style
   ============================================ */
/* ── Footer — institucional sóbrio ── */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0a1523 100%);
  padding-top: 88px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
/* Linha superior estática: filete laranja discreto */
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 26, .35) 40%,
    rgba(255, 167, 102, .6) 50%,
    rgba(255, 107, 26, .35) 60%,
    transparent 100%);
  box-shadow: 0 0 14px rgba(255, 107, 26, .2);
}

/* Layout principal: brand | cols */
.footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 80px;
  align-items: start;
}

/* Brand block — logo símbolo + wordmark + descrição institucional */
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity .25s ease;
}
.footer__logo:hover { opacity: .82; }
.footer__logo-symbol {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(255, 107, 26, .35));
}
.footer__logo-mark {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(255, 107, 26, .25));
}
.footer__kind {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
  max-width: 36ch;
  font-weight: 400;
  letter-spacing: -.005em;
  margin: 0;
}

/* Nav cols (direita) */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col h3 {
  font-family: var(--fm);
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__col-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 107, 26, .7);
  flex-shrink: 0;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  transition: color .25s ease, transform .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.005em;
}
.footer__col a:hover {
  color: var(--orange-l);
  transform: translateX(4px);
}

/* Social: ícones + texto */
.footer__social a svg {
  width: 16px; height: 16px;
  color: rgba(255, 255, 255, .55);
  transition: color .25s ease;
  flex-shrink: 0;
}
.footer__social a:hover svg {
  color: var(--orange);
}

/* Divider estático entre cols e bottom */
.footer__divider {
  position: relative;
  z-index: 2;
  max-width: calc(var(--max-w) - 96px);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, .08) 20%,
    rgba(255, 255, 255, .1) 50%,
    rgba(255, 255, 255, .08) 80%,
    transparent);
}

/* ── Glow logo with spotlight (watermark removido — brand block cobre) ── */
.footer__glow-logo { display: none; }
.footer__glow-logo--legacy {
  position: relative;
  width: 100%;
  margin-top: 10px;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
  cursor: crosshair;
}
.footer__glow-img {
  display: block;
  width: 35%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  opacity: 0.15;
  filter: brightness(0.8);
  transition: opacity 0.4s ease;
}
.footer__glow-logo:hover .footer__glow-img {
  opacity: 0.06;
}
.footer__glow-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 200px at var(--sx, -999px) var(--sy, -999px),
    rgba(219,85,0,0.9), rgba(255,122,42,0.4) 30%, rgba(219,85,0,0.1) 55%, transparent 70%);
  mix-blend-mode: screen;
  -webkit-mask-image: url('assets/images/logo-laranja.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 35% auto;
  mask-image: url('assets/images/logo-laranja.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 35% auto;
  filter: drop-shadow(0 0 30px rgba(219,85,0,0.3));
}

/* ── Bottom bar ── */
.footer__bottom {
  position: relative;
  z-index: 3;
  padding: 20px 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
  margin: 0;
}
.footer__backtop {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.footer__backtop:hover {
  color: var(--orange-l);
  border-color: rgba(255, 107, 26, .4);
  background: rgba(255, 107, 26, .08);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px 40px;
  }
  .footer__cols { gap: 32px; }
  .footer__logo-mark { height: 28px; }
  .footer__logo-symbol { width: 32px; height: 32px; }
  .footer__bottom { padding: 20px 32px 24px; flex-direction: column; gap: 12px; }
  .footer { padding-top: 64px; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__glow-img { width: 70%; }
  .footer__glow-spotlight {
    -webkit-mask-size: 70% auto;
    mask-size: 70% auto;
  }
}

/* ============================================
   WPP FLOAT
   ============================================ */
.wpp-float {
  position: fixed; bottom: 20px; right: 20px; width: 48px; height: 48px;
  border-radius: 50%; background: #25d366; display: flex; align-items: center;
  justify-content: center; z-index: 998; box-shadow: 0 4px 16px rgba(37,211,102,.25);
  transition: all .3s var(--ease); opacity: 0; transform: scale(.5);
  animation: wppIn .4s var(--spring) 1.5s forwards;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 40px rgba(37,211,102,.15); }
.wpp-float::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.2); animation: wppRing 2.5s ease infinite;
}
@keyframes wppRing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes wppIn { to { opacity: 1; transform: scale(1); } }

/* ============================================
   REVEAL — Apple-style fade up
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .problema__grid { grid-template-columns: repeat(2, 1fr); }
  .resultados__grid { gap: 40px; }
  .personas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .floatnav {
    display: none; position: fixed; top: 70px; left: 16px; right: 16px;
    background: rgba(13,27,42,.95); -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); flex-direction: column; padding: 16px 20px;
    border: 1px solid var(--glass-border); border-radius: 20px;
    align-items: stretch; gap: 0;
  }
  .floatnav.active { display: flex; }
  .floatnav__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
    justify-content: flex-start;
  }
  .floatnav__item:hover { background: transparent; padding: 14px 0; }
  .floatnav__item::after { display: none; }
  .floatnav__cta { display: none; }
  .header__burger {
    display: flex; position: fixed; top: 18px; right: 18px; z-index: 1001;
    background: rgba(13,27,42,.85); border: 1px solid var(--glass-border);
    border-radius: 999px; padding: 12px;
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  }
  .header { pointer-events: none; }
  .hero { min-height: auto; }
  .hero-visual {
    right: 50%;
    transform: translate(50%, -50%);
    width: 130vw;
    opacity: .22;
  }
  .hero-visual img { animation: none; filter: brightness(1.1) saturate(1.2); }
  .hero::before {
    width: 100%;
    background: rgba(13,27,42,.85);
  }
  @keyframes heroFloat {
    0%, 100% { transform: translate(50%, -50%); }
    50%      { transform: translate(50%, calc(-50% - 12px)); }
  }
  .hero__stats { position: relative; bottom: auto; padding: 24px 0 12px; }
  #hero .container.hero__stats-row {
    width: 100%; max-width: 100%;
    border-radius: 0; padding: 16px 20px;
    overflow-x: auto; justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .hero__stat { padding: 0 20px; flex-shrink: 0; }
  .hero__stat-value { font-size: 24px; }
  .hero__stat-sep { height: 36px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .problema__grid, .personas__grid { grid-template-columns: 1fr; }
  .pb__layout { grid-template-columns: 1fr; gap: 36px; }
  .pb__panel { height: 300px; }
  .versus__grid { grid-template-columns: 1fr; }
  .resultados__grid { flex-direction: column; gap: 24px; align-items: center; }
}


/* ============================================
   FORMULÁRIO BMAI
   ============================================ */
#form {
  padding: 128px 0;
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-copy__lead {
  font-size: 15px;
  color: var(--gray1);
  line-height: 1.8;
  margin: 18px 0 24px;
}
.form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-bullets li {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-bullets li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.form-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 40px;
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  backdrop-filter: blur(40px) saturate(120%);
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  position: relative;
  margin-bottom: 20px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 22px 16px 8px;
  font-size: 14px;
  font-family: var(--ff);
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { padding-top: 24px; min-height: 96px; }
.field select { padding-right: 40px; cursor: pointer; }
.field--select .field__chevron {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray1);
  pointer-events: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: rgba(219,85,0,0.05);
}

.field label,
.field .select-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray1);
  pointer-events: none;
  transition: all .2s var(--ease);
}
.field--textarea label { top: 22px; transform: none; }

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ .select-label,
.field select:valid ~ .select-label {
  top: 8px;
  transform: none;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239,68,68,0.4);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  border-radius: 12px;
  margin-top: 4px;
}
.form-disclaimer {
  font-size: 11.5px;
  color: var(--gray2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  #form { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .field-group { grid-template-columns: 1fr; }
}

/* ============================================
   PATAGON-INSPIRED FX
   ============================================ */

/* Grid pattern sutil de fundo */
.hero::before,
#form::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
#form { position: relative; overflow: hidden; }
#form > .container { position: relative; z-index: 1; }

/* Borda gradiente rotativa (form card) */
@property --grad-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.form-card {
  position: relative;
  isolation: isolate;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--grad-angle, 0deg),
    transparent 0%,
    rgba(219,85,0,.6) 20%,
    rgba(255,170,90,.4) 30%,
    transparent 50%,
    transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradSpin 6s linear infinite;
  pointer-events: none;
  opacity: .9;
}
@keyframes gradSpin {
  to { --grad-angle: 360deg; }
}
/* Fallback se @property não suportar */
@supports not (background: conic-gradient(from var(--grad-angle))) {
  .form-card::before {
    background: linear-gradient(135deg, rgba(219,85,0,.5), transparent 40%, transparent 60%, rgba(255,170,90,.4));
    animation: none;
  }
}

/* Glow pulsante atrás do form card */
.form-card::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(219,85,0,.18), transparent 60%);
  z-index: -1;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.05); }
}

/* Pulse rings no botão flutuante WhatsApp */
.wpp-float { position: fixed; }
.wpp-float::before,
.wpp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: wppPulse 2s ease-out infinite;
  pointer-events: none;
}
.wpp-float::after { animation-delay: 1s; }
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wpp-float:hover { transform: scale(1.08); transition: transform .25s var(--ease); }

/* Glow extra no foco dos campos */
.field input:focus,
.field textarea:focus,
.field select:focus {
  box-shadow: 0 0 0 3px rgba(219,85,0,.12), 0 0 32px -8px rgba(219,85,0,.4);
}

/* Glow no botão primary ao hover (intensificar) */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(100%); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .manifesto__line { opacity: 1; transform: none; }
}

/* ============================================
   CURSOR — seta nativa laranja BMAI
   ============================================ */
* {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='24' viewBox='0 0 16 24'%3E%3Cpath d='M0 0 L0 20 L4.5 15.5 L7.5 22 L10 21 L7 14.5 L13 14.5 Z' fill='%23db5500' stroke='%23000000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 0 0, auto !important;
}
a, button, [role="button"],
.aria-node, .ac-card, .sd,
.nav-cta, .nav-links a,
.team-card-wrap, .faq-q,
.book-wrap, .cases-dot,
[onclick], [data-tilt] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='26' viewBox='0 0 18 26'%3E%3Cpath d='M0 0 L0 22 L5 17 L8.5 24 L11 23 L7.5 16 L14 16 Z' fill='%23ff7a2a' stroke='%23000000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 0 0, pointer !important;
}
p, h1, h2, h3, h4, h5, h6,
li, label, input, textarea {
  cursor: text !important;
}
@media (pointer: coarse) {
  * { cursor: auto !important; }
}

/* #cur-trail removido — sem bola de cursor */
#cur-trail { display: none !important; }

/* ===========================================================
   MOBILE PERFORMANCE GATE — reduz efeitos caros em devices
   pequenos / touch. Mantém visual intacto em desktop.
   =========================================================== */
@media (max-width: 768px) {
  /* backdrop-filter blur é caro no Safari mobile — reduz pra 10px
     (excluímos .team-card: backdrop-filter quebra preserve-3d no iOS Safari.
     Excluímos .hero__stats-row: o bg do hero por tras eh a hero-bg.jpg
     muito intensa, o blur deixa os numeros ilegiveis — queremos bg solido) */
  .card-stack,
  .card-stack__item,
  .cs-hero {
    -webkit-backdrop-filter: blur(10px) !important;
            backdrop-filter: blur(10px) !important;
  }
  .hero__stats-row,
  .team-card {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
  /* Box-shadows complexas → consolida em 1 camada */
  .card-stack,
  .card-stack__item {
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, .55) !important;
  }
  /* heroFloat anima transform 60fps em elemento grande — off */
  .hero-visual { animation: none !important; }
  /* will-change só em elementos realmente animados */
  .reveal:not(.revealed) { will-change: opacity, transform; }
}
@media (hover: none), (pointer: coarse) {
  /* Touch devices: desliga animações contínuas caras */
  .qs-ring,
  .qs-stage { animation: none !important; }
  /* transitions de hover desnecessárias em touch */
  .btn, .floatnav__cta, .cs-card { transition-duration: .2s !important; }
}
@media (max-width: 768px) {
  /* Mobile: esconde 6 das 14 notifs (mini/med internas) — sobram 8 nas bordas */
  .qs-scene .qs-notif--mini,
  .qs-stage > .qs-notif[data-tilt="center-bottom"],
  .qs-stage > .qs-notif[data-tilt="mild-left"],
  .qs-stage > .qs-notif[data-tilt="mild-right"] {
    display: none !important;
  }
  /* Brand card fica mais proeminente (ocupa mais espaço já que sobra área) */
  .qs-brand { width: min(70%, 300px); padding: 24px 22px 22px; }
}

/* ===========================================================
   A11Y MOBILE — touch targets, focus rings, reduced-motion
   =========================================================== */
@media (pointer: coarse) {
  /* Mínimo 44×44px pra todos os alvos touch (WCAG 2.5.5) */
  .btn,
  .floatnav__item,
  .floatnav__cta,
  .faq__q,
  .header__burger,
  .lang-btn,
  .team-card-wrap,
  .aria-node,
  a[href^="http"],
  a[href^="#"],
  button:not([hidden]) {
    min-height: 44px;
  }
  /* Formulário: inputs touch-friendly */
  .form input, .form textarea, .form select { min-height: 48px; font-size: 16px; }
}
/* Focus-visible universal — acessibilidade de teclado */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.floatnav__cta:focus-visible {
  outline-offset: 4px;
}
/* prefers-reduced-motion — respeito global expandido */
@media (prefers-reduced-motion: reduce) {
  .qs-ring, .qs-stage, .qs-brand,
  .hero-visual,
  .aria-detail-progress__bar,
  .card-stack__item,
  .reveal, .manifesto__line {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   SECTION DOTS — navegação lateral
   ============================================ */
#sdots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 88;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  background: rgba(13,27,42,.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 100px;
  padding: 14px 8px;
}
#sdots.vis { opacity: 1; pointer-events: auto; }

.sd {
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.18);
  display: block;
  position: relative;
  cursor: pointer;
  transition:
    height .4s cubic-bezier(.16,1,.3,1),
    width .4s cubic-bezier(.16,1,.3,1),
    background .3s ease,
    box-shadow .3s ease;
}
.sd::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(13,27,42,.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(219,85,0,.3);
  color: var(--white);
  font-family: var(--fp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sd::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid rgba(219,85,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sd:hover::before,
.sd:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.sd:hover {
  background: rgba(219,85,0,.55);
  width: 6px;
  height: 6px;
}
.sd.active {
  background: linear-gradient(to bottom, #ff7a2a, #db5500);
  height: 28px;
  width: 4px;
  box-shadow:
    0 0 8px  rgba(219,85,0,.6),
    0 0 16px rgba(219,85,0,.3),
    0 0 28px rgba(219,85,0,.15);
}
.sd.active::before,
.sd.active::after { display: none; }

@media (max-width: 1000px) { #sdots { display: none; } }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-btn {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1100;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(13,27,42,.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 14px;
  color: var(--white);
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .25s, background .25s, box-shadow .25s;
  white-space: nowrap;
}
.lang-trigger:hover {
  border-color: rgba(219,85,0,.4);
  background: rgba(219,85,0,.1);
  box-shadow: 0 0 16px rgba(219,85,0,.18);
}
.lang-trigger[aria-expanded="true"] { border-color: var(--orange); }
.lang-chevron { transition: transform .3s var(--ease); opacity: .55; }
.lang-trigger[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); opacity: 1; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(13,27,42,.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 6px;
  min-width: 180px;
  opacity: 0;
  transform: translateY(-8px) scale(.96);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.lang-dropdown.open { opacity: 1; transform: none; pointer-events: auto; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  border: none;
  background: none;
  font-family: var(--fp);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray1);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: left;
  white-space: nowrap;
}
.lang-opt:hover { background: rgba(255,255,255,.06); color: var(--white); }
.lang-opt.active { color: var(--orange); background: rgba(219,85,0,.1); }

body.translating { animation: translateFlash .4s ease; }
@keyframes translateFlash {
  0% { opacity: 1; }
  30% { opacity: .6; }
  100% { opacity: 1; }
}
body[dir="rtl"] { direction: rtl; }

/* Esconder UI nativa do Google Translate */
.goog-te-banner-frame,
.skiptranslate,
.goog-te-gadget,
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
body { top: 0 !important; }

/* Mobile: integra lang-btn no drawer do menu (3 barrinhas) */
@media (max-width: 768px) {
  /* Fora do drawer ativo, esconde o lang-btn em mobile */
  .lang-btn { position: static; top: auto; right: auto; display: none; }
  .floatnav.active .lang-btn {
    display: block;
    width: 100%;
    order: 4;
    margin-top: 4px;
  }
  .floatnav.active .lang-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 13px;
  }
  .floatnav.active .lang-dropdown {
    position: static;
    top: auto; right: auto;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    transform: none;
    transform-origin: top center;
  }
  .floatnav.active .lang-dropdown.open { transform: none; }
}

/* ============================================
   TYPOGRAPHY HIERARCHY
   ============================================ */
body { font-family: var(--fp); }

/* Titles — Oswald uppercase */
.hero__title,
.section__title,
.case-title,
.tc-front-info h3,
.tc-back-footer strong {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.hero__title { font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.section__title { line-height: 1.05; }
.case-title,
.tc-front-info h3 { font-weight: 500; line-height: 1.1; letter-spacing: .005em; }

/* Big numbers — Oswald */
.hero__stat-value,
.resultados__num {
  font-family: var(--fd);
  font-weight: 700;
  letter-spacing: -.02em;
}

/* Mono labels / chips / tags */
.tag,
.mono,
.case-tag,
.case-result,
.tc-back-footer span,
.form-disclaimer,
.footer__col h3,
.footer__bottom p,
.team-scroll-hint,
.hero__stat-label {
  font-family: var(--fm);
}

/* Subs / leads — Plus Jakarta */
.hero__sub,
.section__sub,
.case-desc,
.tc-back-content p,
.form-copy__lead,
.faq__a p,
.pb__desc,
.footer__col a,
.floatnav__item,
.floatnav__cta-text,
.btn {
  font-family: var(--fp);
}

@media (max-width: 768px) {
  .section__title { font-size: clamp(26px, 7vw, 38px); }
  .hero__title { font-size: clamp(32px, 8vw, 46px); }
}

/* ============================================
   MOBILE FIXES — overflow, animações, layout
   ============================================ */
html { overflow-x: clip; }
body { overflow-x: clip; }
section, footer, nav, #tk { overflow-x: clip; }
h1, h2, h3, p, span, li, a {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (pointer: coarse) {
  * { cursor: auto !important; }
}

@media (max-width: 768px) {
  /* Animações de entrada desativadas */
  .r, .rs {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hero visual mobile: sem parallax da imagem (pesado), mantém glow
     pulsante atrás (leve: só opacity+scale no ::before) */
  .hero-visual {
    transform: translateY(-50%) !important;
    animation: none !important;
    transition: none !important;
    opacity: 0.2 !important;
    width: 100vw !important;
    right: 0 !important;
    left: 0 !important;
    top: 50% !important;
  }
  .hero-visual img {
    animation: none !important;
    transform: none !important;
  }
  .hero-visual::before {
    opacity: .45 !important;
  }

  /* Hero layout */
  #hero {
    padding: 100px 20px 80px;
    min-height: 100svh;
    overflow: hidden;
  }
  .hi {
    max-width: 100% !important;
    width: 100% !important;
  }
  #hero h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
    line-height: 1.05 !important;
  }

  /* Nav */
  .nav-inner { display: none !important; }
  .nav-hamburger { display: flex !important; }
  #mm { padding: 80px 24px 40px; }
  #mm a { font-size: 22px; }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 16px !important;
  }
  .team-card-wrap { aspect-ratio: 3 / 4; height: auto !important; }
  .team-card-wrap.flipped .team-card {
    transform: rotateY(180deg) !important;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .field-group {
    grid-template-columns: 1fr !important;
  }
  .form-card {
    padding: 24px 20px !important;
  }

  /* Footer */
  .ft-top {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .flk {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 16px !important;
  }
}

@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr !important; }
  .team-card-wrap { aspect-ratio: 3 / 4; height: auto !important; }
}



/* ============================================
   CASES — 3D Tabs (Aceternity inspired)
   ============================================ */
#cases {
  padding: 128px 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   CASES DE SUCESSO
   ============================================ */

.cs { padding: 72px 0 48px; position: relative; }
.cs__heading {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 40px;
  text-align: center;
}

/* ── Hero card ── */
.cs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s, box-shadow 0.5s;
}
.cs-hero.is-visible { opacity: 1; transform: translateY(0); }
.cs-hero:hover {
  border-color: rgba(219,85,0,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(219,85,0,0.04);
}

.cs-hero__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-hero__badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cs-hero__logo {
  height: 32px; width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}
.cs-hero__logo-fb {
  font-family: var(--fd);
  font-size: 22px; font-weight: 700; color: var(--white);
}
.cs-hero__sector {
  font-family: var(--fm);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cs-hero__quote {
  font-family: var(--ff);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}
.cs-hero__attr {
  display: flex; align-items: center; gap: 12px;
}
.cs-hero__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff9944);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 13px; font-weight: 700; color: #fff;
  box-shadow: 0 0 14px rgba(219,85,0,0.2);
}
.cs-hero__attr strong { display: block; font-size: 14px; color: var(--white); }
.cs-hero__attr span { font-size: 12px; color: rgba(255,255,255,0.4); }

.cs-hero__stats {
  display: flex; gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.cs-hero__stat-val {
  display: block;
  font-family: var(--fd);
  font-size: 32px; font-weight: 700;
  color: var(--orange);
  line-height: 1; letter-spacing: -0.02em;
  text-shadow: 0 0 25px rgba(219,85,0,0.2);
  margin-bottom: 4px;
}
.cs-hero__stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* Hero visual side */
.cs-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(219,85,0,0.04), rgba(219,85,0,0.01));
  border-left: 1px solid rgba(255,255,255,0.04);
  min-height: 320px;
}
.cs-hero__glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,85,0,0.12) 0%, rgba(219,85,0,0.03) 50%, transparent 70%);
  filter: blur(40px);
  animation: csGlowPulse 4s ease-in-out infinite;
}
@keyframes csGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.cs-hero__visual-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px;
  opacity: 0.9;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.cs-hero__tag-pill {
  position: relative;
  font-family: var(--fm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(219,85,0,0.08);
  border: 1px solid rgba(219,85,0,0.2);
  padding: 8px 24px; border-radius: 100px;
}

/* ── Grid de cards ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cs-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  /* reveal */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s, box-shadow 0.5s;
}
.cs-card.is-visible {
  opacity: 1; transform: translateY(0);
}
.cs-card:hover {
  border-color: rgba(219,85,0,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(219,85,0,0.04);
  transform: translateY(-4px);
}

/* Cursor glow */
.cs-card__glow {
  position: absolute; inset: 0;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(circle 250px at var(--gx,50%) var(--gy,50%),
    rgba(219,85,0,0.08), transparent 70%);
}
.cs-card:hover .cs-card__glow { opacity: 1; }

/* Shine */
.cs-card::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.03) 55%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.cs-card:hover::after { animation: csShine 0.7s ease forwards; }
@keyframes csShine { to { left: 130%; } }

/* Top glow line */
.cs-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219,85,0,0.3) 50%, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.cs-card:hover::before { opacity: 1; }

.cs-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-card__brand { display: flex; align-items: center; }
.cs-card__logo {
  height: 24px; width: auto;
  object-fit: contain;
  filter: brightness(1.1) grayscale(0.2);
  transition: filter 0.3s;
}
.cs-card:hover .cs-card__logo { filter: brightness(1.3) grayscale(0); }
.cs-card__logo-fb {
  font-family: var(--fd);
  font-size: 18px; font-weight: 700; color: var(--white);
}
.cs-card__sector {
  font-family: var(--fm);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.cs-card__result {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.cs-card__metric {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--orange);
  font-size: 17px;
}

.cs-card__quote {
  font-family: var(--ff);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid rgba(219,85,0,0.3);
  margin: 0;
}

.cs-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cs-card__author {
  display: flex; align-items: center; gap: 10px;
}
.cs-card__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff9944);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.cs-card__author strong { font-size: 13px; color: var(--white); display: block; }
.cs-card__author span { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs-hero { grid-template-columns: 1fr; }
  .cs-hero__visual { min-height: 200px; border-left: none; border-top: 1px solid rgba(255,255,255,0.04); }
  .cs-hero__content { padding: 32px; }
  .cs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-hero__content { padding: 24px; }
  .cs-hero__stats { flex-wrap: wrap; gap: 20px; }
  .cs-hero__quote { font-size: 16px; }
}


/* ============================================
   GLOBAL GLOW & SHINE EFFECTS (additive only)
   ============================================ */

/* 1. Ambient glow em seções */
#pb::before,
#nm::before,
#ct::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(219,85,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite;
  z-index: 0;
}
#df::before,
#pq::before,
#faq::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(219,85,0,0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite reverse;
  z-index: 0;
}
@keyframes ambientPulse {
  0%,100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* 2. Shimmer nos títulos */
section h2,
.sec-h {
  position: relative;
  overflow: hidden;
}
section h2.shimmer-active::after,
.sec-h.shimmer-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(219,85,0,0.15) 50%, transparent 60%);
  animation: titleShimmer 0.8s ease forwards;
  pointer-events: none;
}
@keyframes titleShimmer {
  from { left: -100%; }
  to   { left: 200%;  }
}

/* 3. Glow nos chips */
.chip {
  position: relative;
  animation: chipGlow 3s ease-in-out infinite;
}
@keyframes chipGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(219,85,0,0);   border-color: rgba(219,85,0,0.28); }
  50%     { box-shadow: 0 0 12px rgba(219,85,0,0.2); border-color: rgba(219,85,0,0.5); }
}

/* 4. Shine no botão CTA principal */
.bf {
  position: relative;
  overflow: hidden;
}
.bf::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%,60% { left: -100%; }
  80%    { left: 150%;  }
  100%   { left: 150%;  }
}

/* 6. Border-light nos cards */
.aria-card,
.dep-card,
.qc,
.nin {
  --border-opacity: 0.07;
}
.aria-card.border-lit,
.dep-card.border-lit,
.qc.border-lit,
.nin.border-lit {
  animation: borderLight 0.8s ease forwards;
}
@keyframes borderLight {
  0%   { border-color: rgba(219,85,0,0.6); box-shadow: 0 0 20px rgba(219,85,0,0.3); }
  100% { border-color: rgba(255,255,255,0.07); box-shadow: none; }
}

/* 7. Glow na scroll progress bar */
#hpb {
  box-shadow:
    0 0 6px  rgba(219,85,0,0.8),
    0 0 12px rgba(219,85,0,0.4),
    0 0 24px rgba(219,85,0,0.2);
  height: 2px;
}

/* 8. Hover glow na nav */
.nav-links a:hover {
  color: var(--wh);
  text-shadow: 0 0 12px rgba(219,85,0,0.5);
}
.nav-links a:hover::after {
  box-shadow: 0 0 6px rgba(219,85,0,0.5);
}

/* 9. Glow nos números */
.nv2,
.hero__stat-value {
  text-shadow:
    0 0 20px rgba(219,85,0,0.4),
    0 0 40px rgba(219,85,0,0.2);
  animation: numGlow 4s ease-in-out infinite;
}
@keyframes numGlow {
  0%,100% { text-shadow: 0 0 20px rgba(219,85,0,0.3), 0 0 40px rgba(219,85,0,0.15); }
  50%     { text-shadow: 0 0 28px rgba(219,85,0,0.5), 0 0 56px rgba(219,85,0,0.25); }
}

/* 10. Footer divider glow */
.ft-top {
  border-bottom: 1px solid rgba(219,85,0,0.15);
  box-shadow: 0 1px 20px rgba(219,85,0,0.06);
}

/* ============================================
   TEXT HOVER EFFECT
   ============================================ */
.text-hover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(200px, 30vw, 400px);
  overflow: hidden;
  background: transparent;
  cursor: default;
}
.text-hover__svg {
  width: 100%;
  max-width: 900px;
  height: 100%;
}
.text-hover__base,
.text-hover__glow,
.text-hover__fill {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 180px;
  letter-spacing: .05em;
}
@media (max-width: 768px) {
  .text-hover__base,
  .text-hover__glow,
  .text-hover__fill { font-size: 120px; }
}
@media (max-width: 480px) {
  .text-hover__base,
  .text-hover__glow,
  .text-hover__fill { font-size: 80px; }
}

/* Performance — desativar pesadas no mobile */
@media (max-width: 768px) {
  #pb::before, #nm::before, #ct::before,
  #df::before, #pq::before, #faq::before { animation: none; }
  .chip { animation: none; }
  .bf::after { animation: none; display: none; }
  .nv2, .hero__stat-value { animation: none; }
}

/* FORM FEEDBACK */
.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
  animation: fbIn .35s cubic-bezier(.2,.9,.3,1.1);
}
.form-feedback .fb-ico { flex-shrink: 0; }
.form-feedback .fb-msg { flex: 1; }
.form-feedback--success {
  background: linear-gradient(135deg, rgba(37,211,102,.10), rgba(37,211,102,.04));
  border-color: rgba(37,211,102,.35);
  color: #148a42;
}
.form-feedback--error {
  background: linear-gradient(135deg, rgba(219,85,0,.10), rgba(219,85,0,.04));
  border-color: rgba(219,85,0,.35);
  color: #b34500;
}
.form-feedback--warn {
  background: linear-gradient(135deg, rgba(255,176,32,.12), rgba(255,176,32,.04));
  border-color: rgba(219,140,0,.35);
  color: #8a5a00;
}
.form-feedback--warn .fb-ico { animation: fbShake .5s ease; }
@keyframes fbIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes fbShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-3px) rotate(-4deg); }
  40% { transform: translateX(3px) rotate(4deg); }
  60% { transform: translateX(-2px) rotate(-2deg); }
  80% { transform: translateX(2px) rotate(2deg); }
}

/* INVALID FIELD */
.field-invalid,
.field-invalid:focus {
  border-color: rgba(219,140,0,.6) !important;
  box-shadow: 0 0 0 3px rgba(255,176,32,.15) !important;
  animation: fieldShake .35s ease;
}
@keyframes fieldShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ============================================
   MOBILE — ajustes consolidados iPhone/Android
   ============================================ */
@media (max-width: 768px) {
  /* Containers mais estreitos */
  .container { padding: 0 18px !important; }

  /* Preve que elementos quebrem layout por overflow horizontal */
  html, body { max-width: 100vw; overflow-x: hidden; }

  /* Floatnav mobile — pill compacto + drawer expansível */
  .header { padding: 0 14px !important; }
  .floatnav {
    gap: 4px !important;
    padding: 6px 6px 6px 10px !important;
    position: relative;
    flex-wrap: wrap;
    max-width: calc(100vw - 28px);
  }
  .floatnav .nav-sep { display: none !important; }
  .floatnav__item {
    display: none !important;
    padding: 12px 16px !important;
    width: 100%;
    border-radius: 12px !important;
    justify-content: flex-start !important;
  }
  .floatnav.active {
    border-radius: 20px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 10px !important;
    gap: 4px !important;
  }
  .floatnav.active .floatnav__item {
    display: inline-flex !important;
    order: 2;
  }
  .floatnav.active .nav-logo,
  .floatnav.active .floatnav__cta { order: 1; }
  .floatnav.active .floatnav__cta {
    order: 3;
    width: 100%;
    justify-content: center !important;
    margin-top: 4px;
  }
  .floatnav.active .floatnav__icon {
    width: 18px !important;
    opacity: 1 !important;
    transform: none !important;
    margin-right: 10px !important;
  }
  .floatnav.active .floatnav__text { font-size: 14px; }
  .floatnav__cta {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
  .floatnav__cta-icon { width: 22px !important; height: 22px !important; }
  .nav-logo img { width: 28px !important; height: 28px !important; }
  .header__burger {
    display: flex !important;
    position: fixed;
    right: 14px;
    top: 14px;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(13,27,42,.85) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    z-index: 1001;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  /* Hero */
  .hero { min-height: auto !important; padding: 110px 0 60px !important; }
  #hero .container.hero__wrap { padding: 0 20px !important; }
  .hero__title { font-size: clamp(30px, 8.6vw, 44px) !important; margin-bottom: 20px !important; }
  .hero__title .h-line { white-space: normal !important; }
  .hero__sub { font-size: 1.08rem !important; margin-bottom: 24px !important; line-height: 1.55 !important; }
  .hero__ctas { flex-direction: column !important; flex-wrap: nowrap !important; gap: 10px !important; align-items: stretch !important; }
  .hero__ctas .btn { width: 100% !important; min-width: 0 !important; justify-content: center !important; padding: 15px 24px !important; }
  .hero__badge { font-size: 11px !important; padding: 6px 12px !important; }

  /* Hero stats — 3-col compacto horizontal */
  .hero__stats { margin-top: 28px !important; }
  #hero .container.hero__stats-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: calc(100vw - 32px) !important;
    max-width: 100% !important;
    padding: 14px 12px !important;
    gap: 4px !important;
    overflow: visible !important;
  }
  .hero__stat { padding: 0 4px !important; flex: 1 1 0 !important; min-width: 0 !important; text-align: center !important; }
  .hero__stat-value { font-size: 22px !important; line-height: 1.1 !important; }
  .hero__stat-label { font-size: 9.5px !important; white-space: normal !important; text-align: center !important; line-height: 1.25 !important; letter-spacing: .04em !important; }
  .hero__stat-sep { width: 1px !important; height: 30px !important; flex: 0 0 auto !important; }

  /* Ticker mobile — logos menores, animação ainda mais rápida */
  .ticker { padding: 14px 0 !important; }
  .ticker__track--logos { animation-duration: 16s !important; }
  .ticker__track--logos .ticker__dot { margin: 0 20px !important; }
  .ticker__logo { width: 160px !important; height: 56px !important; padding: 0 6px !important; }
  .ticker__logo img { max-width: 100% !important; max-height: 100% !important; }

  /* Problema — layout stack + painel */
  .pb__layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .pb__panel { max-width: 100% !important; }
  .pb__stream { max-height: 340px !important; }
  .pb__desc { font-size: .95rem !important; }

  /* Por que BMAi — empilha */
  .versus__grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .versus__col { padding: 22px 20px !important; }

  /* Método AIRA — 1 linha compacta, nunca quebra */
  .aria-flow { flex-wrap: nowrap !important; justify-content: space-between !important; gap: 2px !important; padding: 12px 0 28px !important; }
  .aria-node { flex: 0 0 auto !important; }
  .aria-node-inner { width: 52px !important; height: 52px !important; }
  .aria-node-letter { font-size: 18px !important; }
  .aria-node-num { font-size: 8px !important; }
  .aria-node-label { font-size: 9px !important; margin-top: 6px !important; letter-spacing: .06em !important; }
  .aria-connector { flex: 1 1 auto !important; min-width: 0 !important; max-width: none !important; }
  .aria-connector-svg { width: 100% !important; height: 18px !important; }
  .aria-detail-inner { padding: 22px 18px !important; }
  .aria-detail-title { font-size: 24px !important; }
  .aria-detail-desc { font-size: .92rem !important; }

  /* Cases hero card */
  .cs-hero { grid-template-columns: 1fr !important; }
  .cs-hero__content { padding: 24px 20px !important; }
  .cs-hero__quote { font-size: 15px !important; line-height: 1.55 !important; }
  .cs-hero__stats { flex-direction: column !important; gap: 14px !important; align-items: flex-start !important; }
  .cs-hero__visual { min-height: 140px !important; padding: 20px; }
  .cs-hero__visual-logo { max-height: 80px !important; }
  .cs__heading { font-size: clamp(26px, 7.2vw, 36px) !important; }

  /* Cases grid — stack */
  .cs-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .cs-card { padding: 22px 20px !important; }
  .cs-card__result { font-size: 14px !important; }
  .cs-card__quote { font-size: 13.5px !important; }

  /* Team — 2 colunas, cards mais compactos */
  .team-header { padding: 60px 0 16px !important; }
  .team-scroll-hint { display: none !important; }
  .team-pin { padding: 10px 0 40px !important; }
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }
  .team-card-wrap { aspect-ratio: 3 / 4.4 !important; }
  /* Fallback de flip — opacity + z-index (caso backface-visibility falhe no
     Safari iOS) — garante que a face de trás com a frase apareça */
  .team-card-wrap .tc-front,
  .team-card-wrap .tc-back {
    transition: opacity .35s ease .35s;
  }
  .team-card-wrap.flipped .tc-front { opacity: 0 !important; z-index: 1 !important; }
  .team-card-wrap.flipped .tc-back  { opacity: 1 !important; z-index: 2 !important; }
  .team-card-wrap .tc-front { opacity: 1; z-index: 2; }
  .team-card-wrap .tc-back  { opacity: 0; z-index: 1; }
  .tc-front-info { padding: 16px 14px !important; }
  .tc-front-info h3 { font-size: 17px !important; margin-bottom: 2px !important; }
  .tc-front-info span { font-size: 9px !important; letter-spacing: .08em !important; }
  .tc-back-content { padding: 18px 16px !important; overflow: visible !important; }
  .tc-back-content p { font-size: 13px !important; line-height: 1.5 !important; margin-top: 6px !important; -webkit-line-clamp: unset !important; display: block !important; }
  .tc-quotes { font-size: 28px !important; margin-bottom: 0 !important; }
  .tc-back-footer { padding-top: 12px !important; }
  .tc-back-footer strong { font-size: 14px !important; }
  .tc-back-footer span { font-size: 9px !important; }
  .tc-back-bar { margin-bottom: 8px !important; }
  .faq__q { font-size: 15px !important; padding: 18px 16px !important; gap: 12px; }
  .faq__q span { line-height: 1.35; }
  .faq__a p { font-size: 14px !important; line-height: 1.6 !important; }
  /* padding-bottom só quando ativo — se aplicar sempre, o padding-bottom
     mantém 18px visível mesmo com max-height:0 (border-box quirk) */
  .faq__a { padding: 0 16px !important; }
  .faq__item.active .faq__a { padding: 0 16px 18px !important; }

  /* Form */
  #form { padding: 60px 0 !important; }
  .form-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .field-group { grid-template-columns: 1fr !important; gap: 14px !important; }
  .form-card { padding: 22px 18px !important; }
  .form-copy__lead { font-size: .95rem !important; }
  .form-bullets li { font-size: 13px !important; }
  .field input, .field textarea { font-size: 16px !important; /* evita zoom iOS */ }
  .form-submit { font-size: 14.5px !important; padding: 14px 18px !important; }

  /* CTA final */
  .cta .section__title { font-size: clamp(26px, 7.5vw, 34px) !important; line-height: 1.15 !important; }
  .cta__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Titles gerais */
  .section__title { line-height: 1.15 !important; }
  .section__sub { font-size: .95rem !important; }

  /* Section spacing geral */
  section { padding-top: 48px !important; padding-bottom: 48px !important; }
  #hero, #para-quem { padding-top: 0 !important; padding-bottom: 0 !important; }

  /* Footer — cols em 2 */
  .footer__cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    padding: 40px 20px !important;
  }
  .footer__col h3 { font-size: 12px !important; }
  .footer__col a { font-size: 13px !important; }
  .footer__bottom { padding: 20px !important; }
  .footer__bottom p { font-size: 11px !important; text-align: center; }
  .footer__glow-logo { display: none !important; }

  /* WhatsApp float */
  .wpp-float { width: 52px !important; height: 52px !important; bottom: 16px !important; right: 16px !important; }

  /* Language switcher — à esquerda do burger sem colidir */
  /* legado: lang-btn agora está dentro do drawer — sem override fixo necessário */
  .lang-trigger { padding: 10px 12px !important; font-size: 12px !important; min-height: 44px; border-radius: 12px !important; }

  /* Section dots escondem (só desktop) */
  #sdots { display: none !important; }
}

/* Extra-small (iPhone SE ~ 375px) */
@media (max-width: 400px) {
  .hero__title { font-size: clamp(26px, 8.4vw, 36px) !important; }
  .hero__stat-value { font-size: 26px !important; }
  .hero__stats-row { padding: 14px 16px !important; }
  .ticker__logo { width: 130px !important; height: 46px !important; }
  .ticker__logo img { max-width: 100% !important; max-height: 100% !important; }
  .cs-hero__quote { font-size: 14px !important; }
  .footer__cols { grid-template-columns: 1fr !important; }
}

/* ============================================
   MOBILE — bugs específicos (efeitos e layout)
   ============================================ */
@media (max-width: 768px) {
  /* Hero visual: agora renderiza empilhado abaixo do texto (regras em bloco mais abaixo) */

  /* Team: destrava layout pinado do GSAP */
  .team-pin {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 0 40px !important;
    transform: none !important;
    position: relative !important;
  }
  .team-grid {
    transform: none !important;
    position: relative !important;
    top: auto !important;
    width: 100% !important;
  }
  .team-card-wrap {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Preve text-hover (BMAI gigante hover) travar rolagem */
  .text-hover,
  .text-hover__base,
  .text-hover__glow,
  .text-hover__fill { pointer-events: none; }

  /* Cursor trail escondido (já estava mas garante) */
  #cur-trail { display: none !important; }

  /* Preloader mais rápido no mobile */
  .preloader { transition: opacity .3s ease, visibility .3s ease !important; }

  /* Sections sem overflow horizontal */
  section, .container { overflow-x: visible; }

  /* Botões com ícone alinhados */
  .btn { line-height: 1.2; gap: 8px !important; flex-wrap: nowrap; }
  .btn svg { flex-shrink: 0; }

  /* Scroll progress bar menor */
  .scroll-progress { height: 2px !important; }

  /* Modal/dropdown overlays respeitam safe-area iOS */
  .wpp-float {
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
  }

  /* FAQ chevron alinhamento */
  .faq__chevron { flex-shrink: 0; }

  /* Reduz backdrop-filter (pesado em mobile) */
  .floatnav,
  #hero .container.hero__stats-row,
  .glass-card {
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
  }
}

/* ============================================
   MOBILE — polish final (safe-area, tap, anchors)
   ============================================ */
html { scroll-padding-top: 84px; }

@media (max-width: 768px) {
  /* Remove highlight azul do tap no iOS/Android */
  a, button, .btn, .faq__q, .floatnav__item, .floatnav__cta, .lang-opt, .header__burger, .team-card-wrap {
    -webkit-tap-highlight-color: transparent;
  }

  /* Safe-area iOS em elementos fixados */
  .header { padding-top: env(safe-area-inset-top) !important; }
  .header__burger { top: calc(14px + env(safe-area-inset-top)) !important; }
  /* legado: safe-area do lang-btn não se aplica mais em mobile */
  .footer__bottom { padding-bottom: max(20px, env(safe-area-inset-bottom)) !important; }

  /* Touch targets mínimos */
  .faq__q { min-height: 56px; }
  .lang-opt { min-height: 44px; display: flex; align-items: center; }

  /* Links do footer respiram mais */
  .footer__col ul { gap: 14px !important; }
  .footer__col a { padding: 4px 0; display: inline-block; }

  /* Form — input tamanho consistente + evita zoom iOS */
  .field input, .field textarea, .field select { min-height: 54px; font-size: 16px !important; }
  .field textarea { min-height: 100px; }

  /* Hero — garante que o texto fique acima do símbolo 3D */
  .hero__content { position: relative; z-index: 2; }

  /* Ticker — reserva altura pra não causar layout shift */
  .ticker { min-height: 80px; display: flex; align-items: center; }

  /* Drawer da nav mais legível ao abrir */
  .floatnav.active {
    background: rgba(13,27,42,.95) !important;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08) !important;
  }

  /* Cases card — glow pesado off no mobile */
  .cs-card__glow { display: none !important; }

  /* Preloader — sumir mais rápido */
  .preloader__spinner { width: 24px; height: 24px; border-width: 2px; }

  /* CTA final — título não quebra palavra no meio */
  .cta .section__title { word-break: normal !important; }
}

/* iPhone SE / telas pequenas — ajustes finos */
@media (max-width: 380px) {
  .floatnav { padding: 4px 4px 4px 8px !important; }
  .floatnav__cta-text { font-size: 12px !important; margin: 0 12px 0 8px !important; }
  .nav-logo img { height: 18px !important; }
  .hero__stat-value { font-size: 19px !important; }
  .hero__stat-label { font-size: 8.5px !important; }
  .aria-node-inner { width: 46px !important; height: 46px !important; }
  .aria-node-letter { font-size: 16px !important; }
}

/* ============================================
   MOBILE — polish final auditoria (2026-04-20)
   Corrige tipografia, tap targets, padding, hierarquia
   ============================================ */
@media (max-width: 767px) {
  /* Container — 20px padding-inline (16px só em <=360) */
  .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* Hero — top menor + base respirando */
  .hero { padding: 96px 0 56px !important; }

  /* CTAs primários — tap target 48px + font legível (não dispara zoom iOS em inputs adjacentes) */
  .hero__ctas .btn,
  .cta__actions .btn,
  .form-submit {
    min-height: 50px !important;
    font-size: 15px !important;
    padding: 14px 22px !important;
  }

  /* Hero stats — label respirando sem quebrar em 5 linhas */
  .hero__stat-label {
    font-size: 10.5px !important;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3 !important;
  }

  /* Quem Somos — cards encaixam melhor em 320-375px */
  .qs__pillar { padding: 30px 22px 26px !important; }
  .qs__num { font-size: 58px !important; top: 10px !important; right: 18px !important; }
  .qs__title { font-size: 1.22rem !important; line-height: 1.22 !important; }
  .qs__desc { font-size: .92rem !important; line-height: 1.55 !important; }

  /* Método AIRA — labels nunca quebram feio */
  .aria-node-label {
    text-align: center !important;
    line-height: 1.1 !important;
    max-width: 64px;
    white-space: normal !important;
  }

  /* Cases — logo visual proporcional (evita logo minúsculo em container grande) */
  .cs-hero__visual { min-height: 120px !important; padding: 16px !important; }
  .cs-hero__visual-logo { padding: 24px !important; position: relative !important; inset: auto !important; height: auto !important; max-height: 88px; }

  /* Section titles — consistência de hierarquia em mobile */
  .section__title { font-size: clamp(24px, 7vw, 34px) !important; }

  /* Respiro do #para-quem após seção anterior (cancela padding 0 anterior) */
  #para-quem { padding-top: 20px !important; }

  /* FAQ — aproveita padding do container, evita dupla margem */
  .faq__q { padding-left: 4px !important; padding-right: 4px !important; }
  .faq__a { padding-left: 4px !important; padding-right: 4px !important; }

  /* Ticker — fade lateral não come mais os logos em 320px */
  .ticker::before, .ticker::after { width: 40px !important; }

  /* Hero badge — folga no smartphone */
  .hero__badge {
    letter-spacing: .08em !important;
    white-space: normal !important;
    line-height: 1.4 !important;
  }

  /* Lang switcher — tap target garantido */
  .lang-trigger { padding: 10px 14px !important; min-height: 44px !important; }

  /* WhatsApp float — posição e tamanho confortáveis pro polegar */
  .wpp-float {
    width: 54px !important;
    height: 54px !important;
    right: 20px !important;
    bottom: max(20px, env(safe-area-inset-bottom)) !important;
  }

  /* Tag — não estourar em 3 linhas */
  .tag { font-size: 12px !important; padding: 6px 13px !important; letter-spacing: .1em !important; }

  /* Hero sub — leitura confortável */
  .hero__sub { font-size: 1.05rem !important; line-height: 1.6 !important; }

  /* FAQ item — line-height mais confortável */
  .faq__q span { line-height: 1.4 !important; }
}

/* Footer — 1 coluna em smartphones comuns (não só iPhone SE) */
@media (max-width: 480px) {
  .footer__cols {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 32px 20px !important;
  }
  .footer__col ul { gap: 12px !important; }
}

/* Team: 1 coluna com folga pra textos longos em telas médias-estreitas */
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    gap: 18px !important;
    padding: 0 20px !important;
  }
  .team-card-wrap { aspect-ratio: 3 / 3.8 !important; }
  .tc-back-content { padding: 22px 20px !important; }
  .tc-back-content p { font-size: 14px !important; line-height: 1.6 !important; }
  .tc-quotes { font-size: 36px !important; }
  .tc-back-footer strong { font-size: 16px !important; }
}

/* iPhone SE / Android pequeno — 360 e abaixo */
@media (max-width: 360px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .hero__title { font-size: clamp(22px, 8vw, 30px) !important; line-height: 1.1 !important; }
  .hero__sub { font-size: .96rem !important; }
  .hero__stat-label { font-size: 9px !important; max-width: 80px; }
  .qs__num { font-size: 48px !important; }
  .qs__title { font-size: 1.12rem !important; }
  .qs__desc { font-size: .88rem !important; }
  .tag { font-size: 11px !important; padding: 5px 11px !important; }
  .aria-node-inner { width: 44px !important; height: 44px !important; }
  .aria-node-letter { font-size: 14px !important; }
  .aria-node-label { font-size: 8.5px !important; max-width: 56px; }
  .faq__q { font-size: 14px !important; min-height: 52px !important; }
  .cs-hero__content { padding: 20px 16px !important; }
}

/* ============================================
   QUEM SOMOS — IDV BMAi (enxurrada + agente)
   ~12 notificações pop → agente central resolve.
   Loop 12s, IntersectionObserver-gated.
   ============================================ */
:root {
  --qs-orange: #FF6B1A;
  --qs-orange-l: #FFA866;
  --qs-orange-d: #D44500;
  --qs-surf: rgba(14, 20, 32, .92);
  --qs-green: #5DCAA5;
  --qs-text-1: #E8EEF5;
  --qs-text-2: #A8B3C2;
  --qs-text-3: #7E8A9D;
}

.qs__grid--animated {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
/* Motion esquerda, card direita */
.qs__grid--animated > .qs-scene-wrap { order: 1; }
.qs__grid--animated > .card-stack    { order: 2; }

@media (max-width: 900px) {
  .qs__grid--animated {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .qs__grid--animated > .qs-scene-wrap { order: 2; }
  .qs__grid--animated > .card-stack    { order: 1; }
}
@media (max-width: 900px) {
  .qs__grid--animated {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    max-width: 680px;
    margin: 0 auto;
  }
}

/* ── Card unificado com 2 pilares (lado esquerdo) — polido ── */
.card-unificado {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(255, 107, 26, .06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 107, 26, .05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(16, 24, 38, .94) 0%, rgba(11, 18, 30, .94) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 107, 26, .18);
  border-radius: 20px;
  padding: 48px 40px;
  overflow: hidden;
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
  box-shadow:
    0 24px 48px -18px rgba(0, 0, 0, .45),
    0 4px 12px rgba(0, 0, 0, .2),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}
.card-unificado::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg,
    rgba(255, 107, 26, .35) 0%,
    rgba(255, 107, 26, .08) 30%,
    transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .85;
}
.card-unificado:hover {
  border-color: rgba(255, 107, 26, .32);
  box-shadow:
    0 30px 60px -16px rgba(0, 0, 0, .55),
    0 0 64px rgba(255, 107, 26, .08),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.card-top-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 26, .35) 15%,
    rgba(255, 167, 102, .9) 50%,
    rgba(255, 107, 26, .35) 85%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(255, 107, 26, .5), 0 2px 14px rgba(255, 107, 26, .4);
}

.card-content {
  position: relative;
  z-index: 2;
}

/* === Tech accents === */

/* Eyebrow monospace — 'MÉTODO · BMAi' com dot laranja leading */
/* Eyebrow estilo hypercash/algarys: número grande + dash + label em caixa alta */
.card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 107, 26, .95);
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  align-self: flex-start;
}
.card-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
  opacity: .8;
}
.card-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 107, 26, .8);
}

/* Corner brackets — [ ] em cada canto */
.card-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1.5px solid rgba(255, 107, 26, .55);
  pointer-events: none;
  z-index: 3;
}
.card-corner--tl { top: 14px;    left: 14px;    border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.card-corner--tr { top: 14px;    right: 14px;   border-left: 0;  border-bottom: 0; border-top-right-radius: 4px; }
.card-corner--bl { bottom: 14px; left: 14px;    border-right: 0; border-top: 0;    border-bottom-left-radius: 4px; }
.card-corner--br { bottom: 14px; right: 14px;   border-left: 0;  border-top: 0;    border-bottom-right-radius: 4px; }

/* Scan line laranja que atravessa o card verticalmente a cada ~9s */
.card-scan {
  position: absolute;
  left: 8%; right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 102, .9) 50%, transparent);
  box-shadow: 0 0 12px rgba(255, 107, 26, .45);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: cardScan 9s linear infinite;
}
@keyframes cardScan {
  0%   { transform: translateY(0);      opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(100%);   opacity: 0; }
}

/* Grid pattern tech mais presente (substitui watermark do símbolo) */
.card-content::before {
  content: '';
  position: absolute;
  inset: -48px -40px;
  background-image:
    linear-gradient(rgba(255, 107, 26, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 26, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.card-content h3 {
  position: relative;
  z-index: 1;
  font-family: var(--fd);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-transform: none;
}
.card-content h3 br { display: initial; }  /* preserva quebra de linha (Estruturamos / o processo) */
.card-content h3 span {
  text-shadow: 0 0 32px rgba(255, 107, 26, .28);
}

.card-content p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  margin: 0;
  max-width: 42ch;
  font-weight: 400;
  letter-spacing: -.003em;
  padding: 0;
  border: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .card-unificado { padding: 40px 32px; }
  .card-content::before { width: 88px; height: 88px; top: -8px; right: -10px; }
  .card-content h3 { font-size: clamp(1.75rem, 6.5vw, 2.25rem); margin-bottom: 22px; }
  .card-content p { padding-left: 18px; }
}
@media (max-width: 560px) {
  .card-unificado { padding: 32px 22px; border-radius: 16px; }
  .card-content h3 { font-size: clamp(1.55rem, 8.5vw, 2rem); margin-bottom: 18px; letter-spacing: -.02em; }
  .card-content p { font-size: .96rem; line-height: 1.65; padding-left: 16px; }
}

/* ───────────────────────────────────────────
   Card Stack — card 2 atras do card 1, scroll-hijack traz por cima
   ─────────────────────────────────────────── */
.card-stack {
  --progress: 0;
  position: relative;
  width: 100%;
  min-height: 320px;
  perspective: 1400px;
}

/* Scroll-reveal suave — fade + slide horizontal sutil (x:40→0).
   GPU-only (transform + opacity). once via IO.unobserve no main.js. */
.card-stack--reveal {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
  transition:
    opacity .6s cubic-bezier(.25, .1, .25, 1),
    transform .6s cubic-bezier(.25, .1, .25, 1);
  will-change: transform, opacity;
}
.card-stack--reveal.card-stack--revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .card-stack--reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Cada item = card completo, absolute inset pra empilhar */
.card-stack__item {
  position: absolute;
  inset: 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%,     rgba(255, 107, 26, .1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 107, 26, .08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18, 28, 44, .96) 0%, rgba(10, 18, 30, .96) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1.5px solid rgba(255, 107, 26, .26);
  border-radius: 24px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .55),
    0 8px 20px -6px rgba(0, 0, 0, .3),
    0 0 48px -16px rgba(255, 107, 26, .2),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transform-origin: center top;
  will-change: transform, opacity;
}
.card-stack__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255, 107, 26, .4) 0%,
    rgba(255, 107, 26, .08) 35%,
    transparent 55%,
    rgba(255, 107, 26, .08) 70%,
    rgba(255, 107, 26, .35) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
/* Símbolo BMAi semi-transparente no canto superior direito */
.card-stack__item::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: url('../assets/images/simbolo-laranja.svg') center / contain no-repeat;
  opacity: .09;
  pointer-events: none;
  z-index: 3;
}
.card-stack__item--2::after {
  opacity: .14;   /* card branco — símbolo precisa um pouco mais de presença */
}
@media (max-width: 560px) {
  .card-stack__item::after { top: 16px; right: 16px; width: 42px; height: 42px; }
}
.card-stack__item .card-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* Card 1 sempre visível atrás (opaco, sólido). */
.card-stack__item--1 {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Card 2 EMERGE DE TRÁS DO MOTION (lado esquerdo do card-stack = lado do motion).
   Começa invisível via clip-path(0 100% 0 0) — wipe revelado esquerda→direita.
   Leve translateY+scale pra dar sensação de card saindo de trás. */
.card-stack__item--2 {
  z-index: 2;
  opacity: 1;
  transform: translate3d(-14px, 6px, 0) scale(.96);
  clip-path: inset(0 100% 0 0 round 24px);
  transition:
    transform .8s cubic-bezier(.4, 0, .2, 1),
    clip-path .75s cubic-bezier(.25, 0.8, .35, 1);
  pointer-events: auto;

  /* Paleta invertida — branco creme + laranja */
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%,     rgba(219, 85, 0, .06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(219, 85, 0, .04) 0%, transparent 60%),
    linear-gradient(180deg, #FAF6F1 0%, #EDE7E1 100%);
  border: 1.5px solid rgba(219, 85, 0, .35);
  box-shadow:
    0 30px 60px -20px rgba(219, 85, 0, .35),
    0 8px 20px -6px rgba(0, 0, 0, .15),
    0 0 56px -16px rgba(219, 85, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}
.card-stack__item--2::before {
  background: linear-gradient(135deg,
    rgba(219, 85, 0, .55) 0%,
    rgba(219, 85, 0, .15) 35%,
    transparent 55%,
    rgba(219, 85, 0, .15) 70%,
    rgba(219, 85, 0, .5) 100%);
}
/* Texto interno do card 2 em tom escuro sobre fundo claro */
.card-stack__item--2 .card-content h3 { color: #0A0A0A; }
.card-stack__item--2 .card-content h3 span { color: var(--orange); }
.card-stack__item--2 .card-content p { color: rgba(10, 10, 10, .72); }
.card-stack__item--2 .card-eyebrow {
  color: var(--orange);
}
.card-stack__item--2 .card-eyebrow::before {
  background: var(--orange);
  opacity: 1;
}

/* Hover reveal — só em devices com cursor de verdade */
@media (hover: hover) and (pointer: fine) {
  .card-stack:hover .card-stack__item--2 {
    transform: translate3d(0, 0, 0) scale(1);
    clip-path: inset(0 0 0 0 round 24px);
  }
}
/* Touch: tap alterna via classe .revealed */
.card-stack.is-revealed .card-stack__item--2 {
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round 24px);
}

/* EXPLODE — detona card 2 quando o cursor sai (classe setada via JS) */
.card-stack.explode .card-stack__item--2 {
  transition: none !important;
  animation: cardExplode .55s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
/* Snap: pós-explosão, snapar o card 2 pro estado hidden sem transição */
.card-stack.snap .card-stack__item--2 {
  transition: none !important;
}

@keyframes cardExplode {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    clip-path: inset(0 round 24px);
    opacity: 1;
    filter: brightness(1.25) blur(0);
    box-shadow:
      0 30px 60px -20px rgba(0, 0, 0, .55),
      0 0 56px -16px rgba(219, 85, 0, .3);
  }
  30% {
    transform: translate3d(0, 0, 0) scale(1.08) rotate(.4deg);
    clip-path: inset(0 round 24px);
    opacity: 1;
    filter: brightness(1.7) blur(0);
    box-shadow:
      0 30px 60px -20px rgba(0, 0, 0, .55),
      0 0 160px rgba(219, 85, 0, 1),
      0 0 60px rgba(255, 220, 180, .9);
  }
  100% {
    transform: translate3d(20%, -12px, 0) scale(1.3) rotate(1.5deg);
    clip-path: inset(0 round 24px);
    opacity: 0;
    filter: brightness(.4) blur(16px);
    box-shadow: 0 0 0 rgba(219, 85, 0, 0);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .card-stack { min-height: 340px; }
  .card-stack__item { padding: 36px 28px; border-radius: 20px; }
}
@media (max-width: 560px) {
  .card-stack { min-height: 320px; }
  .card-stack__item { padding: 28px 22px; border-radius: 18px; }
}

/* ── Palco ── */
.qs-scene-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  align-self: stretch;
  contain: layout paint;
}
.qs-scene {
  position: absolute;
  inset: 0;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 55% 42% at 50% 45%, rgba(255, 107, 26, .11) 0%, transparent 62%),
    radial-gradient(ellipse 80% 60% at 50% 50%, #162534 0%, #0d1b2a 55%, #0a1521 100%);
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow:
    inset 0 0 140px rgba(0, 0, 0, .5),
    inset 0 0 80px rgba(255, 107, 26, .04),
    0 40px 80px -30px rgba(0, 0, 0, .6);
}
.qs-scene::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 35%, transparent 78%);
  pointer-events: none;
  opacity: .55;
}
.qs-scene::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  right: -20%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 107, 26, .1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.qs-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: qsCamJitter 7s ease-in-out infinite;
  /* Máscara radial — fade suave na zona central onde o brand card vive,
     evita corte duro e sobreposição confusa no miolo. */
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, .35) 40%,
    #000 68%);
          mask-image: radial-gradient(ellipse 55% 45% at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, .35) 40%,
    #000 68%);
}
.qs-stage.qs-stage--chaos { animation: qsCamJitter 2.5s cubic-bezier(.36,.07,.19,.97) infinite; }
@keyframes qsCamJitter {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(0); }
  25%      { transform: translate3d(.18%, -.12%, 0) rotateY(-.25deg); }
  50%      { transform: translate3d(-.12%, .15%, 0) rotateY(.2deg); }
  75%      { transform: translate3d(.1%, -.05%, 0) rotateY(-.18deg); }
}

/* ── Notificações (estilo iOS) — sem backdrop-filter pra manter fluidez ── */
.qs-notif {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 11px 9px 10px;
  background: rgba(22, 28, 40, .94);
  border: 0.5px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  box-shadow:
    0 12px 28px -10px rgba(0, 0, 0, .7),
    0 3px 8px rgba(0, 0, 0, .3),
    inset 0 .5px 0 rgba(255, 255, 255, .1);
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  will-change: transform, opacity;
  color: var(--qs-text-1);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', var(--ff);
  z-index: 2;
  -webkit-font-smoothing: antialiased;
}
.qs-notif--hero { width: 194px; }
.qs-notif--med  { width: 170px; }
.qs-notif--mini { width: 154px; border-radius: 14px; padding: 8px 10px; }

.qs-notif.qs--in {
  animation: qsNotifPop .55s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes qsNotifPop {
  0%   { opacity: 0; transform: scale(0) rotateY(0) rotateX(0); }
  60%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

/* Tilts por posição — aplicados via transform FINAL no tier.qs--in::after combinados com o scale
   Pra compor com qsNotifPop, usamos CSS var pra tilt base e multiplicamos no final */
.qs-notif[data-tilt="left"]         { --tilt: rotateY(-14deg) rotateX(3deg); }
.qs-notif[data-tilt="right"]        { --tilt: rotateY(14deg)  rotateX(-3deg); }
.qs-notif[data-tilt="mild-left"]    { --tilt: rotateY(-6deg); }
.qs-notif[data-tilt="mild-right"]   { --tilt: rotateY(6deg); }
.qs-notif[data-tilt="center-top"]   { --tilt: rotateX(5deg); }
.qs-notif[data-tilt="center-bottom"]{ --tilt: rotateX(-5deg); }

.qs-notif.qs--in {
  animation: qsNotifPopTilted .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes qsNotifPopTilted {
  0%   { opacity: 0; transform: scale(0) var(--tilt, ); }
  60%  { opacity: 1; transform: scale(1.15) var(--tilt, ); }
  100% { opacity: 1; transform: scale(1) var(--tilt, ); }
}

.qs-notif.qs--flash { animation: qsFlash .24s ease-out, qsNotifPopTilted .6s cubic-bezier(.34, 1.56, .64, 1) forwards; }
@keyframes qsFlash {
  0%   { box-shadow:
           0 14px 34px -10px rgba(0, 0, 0, .75),
           0 4px 12px rgba(0, 0, 0, .35),
           inset 0 .5px 0 rgba(255, 255, 255, .12); }
  50%  { box-shadow:
           0 14px 34px -10px rgba(0, 0, 0, .75),
           0 4px 12px rgba(0, 0, 0, .35),
           inset 0 .5px 0 rgba(255, 255, 255, .35),
           inset 0 0 0 1px rgba(255, 167, 102, .5),
           0 0 18px rgba(255, 107, 26, .35); }
  100% { box-shadow:
           0 14px 34px -10px rgba(0, 0, 0, .75),
           0 4px 12px rgba(0, 0, 0, .35),
           inset 0 .5px 0 rgba(255, 255, 255, .12); }
}

.qs-notif.qs--done {
  border-color: rgba(93, 202, 165, .2);
  transition: border-color .5s ease, filter .5s ease;
  filter: saturate(.82) brightness(.95);
}

/* BMAi + app icon escondidos a pedido — só contato aparece */
.qs-notif__icon, .qs-notif__meta { display: none; }

.qs-notif__body { display: flex; flex-direction: column; gap: 0; padding-left: 0; }

/* Row com avatar + texto */
.qs-notif__row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.qs-notif--mini .qs-notif__row { gap: 7px; }

.qs-notif__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c, #FFA866) 0%, color-mix(in srgb, var(--c, #FFA866) 55%, #000) 130%);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700;
  color: rgba(255, 255, 255, .95);
  letter-spacing: .01em;
  flex-shrink: 0;
  box-shadow: inset 0 .5px 0 rgba(255, 255, 255, .3), 0 1px 3px rgba(0, 0, 0, .3);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}
.qs-notif--mini .qs-notif__avatar { width: 24px; height: 24px; font-size: 9.5px; }

.qs-notif__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.qs-notif__name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .95);
  letter-spacing: -.015em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.15;
}
.qs-notif--mini .qs-notif__name { font-size: 11px; }
.qs-notif__msg {
  font-size: 11px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: -.005em;
}
.qs-notif--mini .qs-notif__msg { font-size: 10.5px; }
.qs-notif__msg--urgent { color: rgba(255, 167, 102, .92); font-weight: 500; }

.qs-notif__check {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7BE3B8 0%, #5DCAA5 100%);
  color: #063923;
  font-size: 11px;
  z-index: 1;                                /* amarra ao stacking do pai */
  box-shadow: 0 2px 6px rgba(0, 0, 0, .45); /* separa visualmente */
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  box-shadow: 0 2px 10px rgba(93, 202, 165, .5), inset 0 .5px 0 rgba(255, 255, 255, .35);
  border: 1.5px solid rgba(10, 14, 23, .9);
}
.qs-notif.qs--done .qs-notif__check {
  animation: qsStamp .55s cubic-bezier(.22, 1.5, .36, 1) forwards;
}
@keyframes qsStamp {
  0%   { opacity: 0; transform: scale(0); }
  55%  { opacity: 1; transform: scale(1.5); }
  75%  { transform: scale(.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Reverse un-stamp na fase de loop */
.qs-notif.qs--unstamp .qs-notif__check {
  animation: qsUnstamp .45s ease-in forwards;
}
@keyframes qsUnstamp {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* ── Agent card (centro) ── */
.qs-agent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: min(46%, 280px);
  padding: 14px 16px 12px;
  background: rgba(14, 20, 32, .95);
  border: 1px solid rgba(255, 107, 26, .55);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, .8),
    0 0 40px rgba(255, 107, 26, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  z-index: 10;
  opacity: 0;
  color: var(--qs-text-1);
  font-family: var(--ff);
}
.qs-agent.qs--in {
  animation: qsAgentRise 1.1s cubic-bezier(.22, 1.2, .36, 1) forwards;
}
@keyframes qsAgentRise {
  0%   { opacity: 0; transform: translate(-50%, 60%) scale(.6); }
  70%  { opacity: 1; transform: translate(-50%, -54%) scale(1.04); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.qs-agent__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 107, 26, .32), transparent 70%);
  filter: blur(28px);
  z-index: -1;
  opacity: 0;
  transition: opacity .8s ease;
}
.qs-agent.qs--glow .qs-agent__glow {
  opacity: 1;
  animation: qsBreath 3.5s ease-in-out infinite;
}
@keyframes qsBreath {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

.qs-agent__fresnel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(from 120deg at 50% 50%,
    rgba(255, 167, 102, .22) 0deg,
    transparent 80deg,
    transparent 200deg,
    rgba(255, 167, 102, .14) 270deg,
    transparent 340deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  mix-blend-mode: screen;
  opacity: .85;
}

.qs-agent__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.qs-agent__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--qs-orange);
  box-shadow: 0 0 10px rgba(255, 107, 26, .8);
  animation: qsAgentDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes qsAgentDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(255, 107, 26, .8); }
  50%      { opacity: .55; box-shadow: 0 0 18px rgba(255, 107, 26, 1); }
}
.qs-agent__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--qs-orange-l);
  flex: 1;
  letter-spacing: -.005em;
}
.qs-agent__pill {
  font-family: var(--fm);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--qs-orange-l);
  background: rgba(255, 107, 26, .12);
  border: 1px solid rgba(255, 107, 26, .35);
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.qs-agent__body {
  font-size: 11.5px;
  color: var(--qs-text-2);
  line-height: 1.45;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.qs-agent__highlight {
  color: var(--qs-orange);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 107, 26, .25);
}

.qs-agent__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 2;
}
.qs-agent__stack { display: flex; }
.qs-chip {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c, #FFA866) 0%, rgba(0, 0, 0, .3) 140%);
  border: 1.5px solid rgba(14, 20, 32, .98);
  margin-left: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  font-weight: 800;
  color: #0A0E17;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
  opacity: 0;
  transform: scale(.4);
}
.qs-chip:first-child { margin-left: 0; }
.qs-chip--plus {
  background: linear-gradient(135deg, var(--qs-orange-l), var(--qs-orange));
  color: #fff;
  font-size: 10px;
}
.qs-agent.qs--chips-in .qs-chip {
  animation: qsChipIn .35s cubic-bezier(.22, 1.4, .36, 1) forwards;
}
.qs-agent.qs--chips-in .qs-chip:nth-child(1) { animation-delay: .0s; }
.qs-agent.qs--chips-in .qs-chip:nth-child(2) { animation-delay: .08s; }
.qs-agent.qs--chips-in .qs-chip:nth-child(3) { animation-delay: .16s; }
.qs-agent.qs--chips-in .qs-chip:nth-child(4) { animation-delay: .24s; }
.qs-agent.qs--chips-in .qs-chip:nth-child(5) { animation-delay: .32s; }
@keyframes qsChipIn {
  0%   { opacity: 0; transform: scale(.3); }
  60%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
.qs-agent__count {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--qs-text-3);
}

/* ── Brand card central (entra após todas as notifs e SOBREPÕE tudo) ── */
.qs-brand {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: min(60%, 340px);
  padding: 32px 28px 28px;
  /* Fundo com gradient radial — fade suave no entorno (evita corte duro) */
  background:
    radial-gradient(ellipse 130% 110% at 50% 50%,
      #0D1B2A 55%,
      rgba(13, 27, 42, .85) 78%,
      rgba(13, 27, 42, 0) 100%);
  border: none;
  border-radius: 24px;
  box-shadow:
    0 0 80px rgba(255, 107, 26, .35),
    0 0 160px rgba(255, 107, 26, .15),
    0 30px 80px -20px rgba(0, 0, 0, .8);
  text-align: center;
  z-index: 100;
  font-family: var(--ff);
  will-change: transform, opacity;
}
/* Borda laranja renderizada como halo interno sutil — não corta o que tá atrás */
.qs-brand::after {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 107, 26, .4);
  border-radius: inherit;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000 65%, transparent 100%);
}

/* Backdrop escurecedor — aplicado no .qs-scene (fora do preserve-3d) */
.qs-scene.qs--brand-on::after,
.qs-scene.qs--brand-off::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%, rgba(13, 27, 42, .96) 0%, rgba(13, 27, 42, .9) 50%, rgba(13, 27, 42, .6) 78%, rgba(13, 27, 42, .25) 100%);
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity .55s ease;
  border-radius: inherit;
}
.qs-scene.qs--brand-on::after { opacity: 1; }

/* Notifs: só opacity (leve) — filter em 25 elementos causa jank */
.qs-scene.qs--brand-on .qs-notif {
  opacity: .1;
  transition: opacity .5s ease;
}
.qs-brand__halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 107, 26, .28), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.qs-brand.qs--in .qs-brand__halo { opacity: 1; }
.qs-brand.qs--in {
  animation: qsBrandIn 1s cubic-bezier(.22, 1.25, .36, 1) forwards;
}
@keyframes qsBrandIn {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.5); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.qs-brand.qs--out {
  animation: qsBrandOut .5s ease-in forwards;
}
@keyframes qsBrandOut {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.8); }
}

.qs-brand__logo {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(255, 107, 26, .6));
}
.qs-brand__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.qs-brand__wordmark {
  display: block;
  height: 36px;
  width: auto;
  max-width: 72%;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 14px rgba(255, 107, 26, .4));
}
.qs-brand__tag {
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  max-width: 28ch;
  margin: 0 auto;
}

/* ── Rings (reading pulses) ── */
.qs-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  mix-blend-mode: screen;
}
.qs-ring {
  opacity: 0;
  transform-origin: 50% 50%;
}
.qs-ring--1.qs--go { animation: qsRing 1.6s cubic-bezier(.2, .6, .3, 1) forwards; }
.qs-ring--2.qs--go { animation: qsRing 1.8s .12s cubic-bezier(.2, .6, .3, 1) forwards; }
.qs-ring--3.qs--go { animation: qsRing 2.0s .24s cubic-bezier(.2, .6, .3, 1) forwards; }
@keyframes qsRing {
  0%   { r: 2; opacity: 0; stroke-width: .45; }
  20%  { opacity: .75; }
  100% { r: 58; opacity: 0; stroke-width: .08; }
}

/* ── Mobile stack ── */
@media (max-width: 900px) {
  .qs__grid--animated {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .qs-scene-wrap { aspect-ratio: 1 / 1; max-height: 520px; height: auto; min-height: 0; }
  .qs-brand { width: 58%; padding: 20px 18px 18px; }
  .qs-brand__logo { width: 44px; height: 44px; margin-bottom: 10px; }
  .qs-brand__wordmark { height: 30px; }
  .qs-notif--hero { width: 160px; }
  .qs-notif--med  { width: 144px; }
  .qs-notif--mini { width: 128px; }
}
@media (max-width: 768px) {
  /* Mobile roda as animações leves. qsCamJitter só fica off em <=560 (regra abaixo)
     pra não pesar no container 3D com 25 notifs em telas estreitas. */
}
@media (max-width: 560px) {
  .qs-scene-wrap { max-height: 440px; aspect-ratio: 1 / 1; height: auto; min-height: 0; }
  .qs-brand { width: 70%; padding: 18px 14px 14px; border-radius: 18px; }
  .qs-brand__logo { width: 38px; height: 38px; margin-bottom: 8px; }
  .qs-brand__wordmark { height: 26px; margin-bottom: 6px; }
  .qs-brand__tag { font-size: 8.5px; letter-spacing: .14em; }
  .qs-notif { padding: 7px 9px; border-radius: 13px; }
  .qs-notif--hero { width: 138px; }
  .qs-notif--med  { width: 122px; }
  .qs-notif--mini { width: 108px; padding: 6px 8px; border-radius: 12px; }
  .qs-notif__name { font-size: 10.5px; }
  .qs-notif__msg { font-size: 10px; }
  .qs-notif--mini .qs-notif__name { font-size: 10px; }
  .qs-notif--mini .qs-notif__msg { font-size: 9.5px; }
  .qs-notif__avatar { width: 24px; height: 24px; font-size: 9px; }
  .qs-notif--mini .qs-notif__avatar { width: 20px; height: 20px; font-size: 8.5px; }
  .qs-notif__check { width: 16px; height: 16px; font-size: 10px; top: -5px; right: -5px; }
}
@media (prefers-reduced-motion: reduce) {
  .qs-notif, .qs-brand, .qs-ring, .qs-stage { animation: none !important; }
  .qs-notif { opacity: 1 !important; transform: scale(1) var(--tilt, ) !important; }
  .qs-brand { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .qs-notif__check { opacity: 1 !important; transform: scale(1) !important; }
}

/* ============================================
   A11Y — respeita prefers-reduced-motion do usuário
   (mobile normal agora roda animações iguais ao desktop)
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  /* Kill global de animações exceto whitelist */
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .15s !important;
    scroll-behavior: auto !important;
  }

  /* Whitelist: pulse-glow da palavra "resultado" permanece (identidade BMAi) */
  .hero-resultado { animation: pulse-glow 2s ease-in-out infinite !important; }

  /* Hero visual — sem float/glow rodando */
  .hero-visual, .hero-visual::before { animation: none !important; }

  /* Ticker — pausa scroll infinito */
  .ticker__track { animation: none !important; transform: none !important; }

  /* Cena Quem Somos — estado final estático (já setado via JS LOW_MOTION) */
  .qs-stage, .qs-card__glow, .qs-dot-agent, .qs-dot-live,
  .qs-agent__dot, .qs-ring, .qs-notif, .qs-agent, .qs-chip,
  .qs-notif__check, .qs-card, .qs-bubble--client {
    animation: none !important;
  }
  .qs-notif { opacity: 1 !important; transform: scale(1) var(--tilt, ) !important; }
  .qs-agent { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .qs-chip  { opacity: 1 !important; transform: scale(1) !important; }
  .qs-notif__check { opacity: 1 !important; transform: scale(1) !important; }

  /* Reveal on scroll — sem lag, já visível */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .manifesto__line { opacity: 1 !important; transform: none !important; }

  /* Hover levitation / translateY — neutralizados em touch */
  .glass-card:hover, .btn--primary:hover, .cs-card:hover,
  .team-card-wrap:hover, .versus__col:hover {
    transform: none !important;
  }

  /* Backgrounds respirantes — estáticos */
  #pb::before, #nm::before, #ct::before,
  #df::before, #pq::before, #faq::before { animation: none !important; }
  .chip, .bf::after, .nv2, .hero__stat-value { animation: none !important; }
  .metodo__header::after { animation: none !important; }
  .manifesto__line--accent { text-shadow: 0 0 30px rgba(219,85,0,.2) !important; }

  /* Preloader sumir mais rápido */
  .preloader { transition: opacity .2s ease, visibility .2s ease !important; }

  /* WhatsApp pulse ring — removido pra economizar GPU */
  .wpp-float::before, .wpp-float::after { display: none !important; }

  /* Scroll progress bar — fica mas sem shine */
  .scroll-progress { box-shadow: 0 0 4px rgba(219,85,0,.4) !important; }

  /* Floatnav CTA shimmer — off */
  .floatnav__cta::before, .floatnav__cta:hover::before { animation: none !important; opacity: 0 !important; }
  .floatnav__cta:hover .floatnav__cta-icon svg { animation: none !important; }

  /* Exceções explícitas que DEVEM continuar com transição curta (≤150ms) */
  .faq__q, .faq__a,
  .btn, .btn--primary,
  .floatnav, .floatnav.active,
  .header, .header__burger,
  .lang-trigger, .lang-dropdown,
  .team-card /* flip no click */ {
    transition-duration: .15s !important;
  }
  .team-card { transition-duration: .5s !important; }
  .faq__a { transition-duration: .4s !important; }
}

/* ============================================
   MOBILE — fullscreen menu + hero com imagem embaixo
   ============================================ */
@media (max-width: 768px) {
  /* ---------- Menu hambúrguer FULLSCREEN ---------- */
  .floatnav.active {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    padding: 88px 24px 40px !important;
    background: rgba(10, 18, 30, .985) !important;
    -webkit-backdrop-filter: blur(28px) saturate(150%) !important;
    backdrop-filter: blur(28px) saturate(150%) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 2px !important;
    overflow-y: auto !important;
    animation: navFullOpen .32s cubic-bezier(.22, 1, .36, 1);
  }
  @keyframes navFullOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .floatnav.active .nav-logo {
    position: absolute !important;
    top: 22px !important;
    left: 24px !important;
    order: 0 !important;
  }
  .floatnav.active .nav-logo img { width: 36px !important; height: 36px !important; }
  .floatnav.active .floatnav__item {
    font-size: 24px !important;
    padding: 22px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
    border-radius: 0 !important;
    opacity: 0;
    transform: translateY(16px);
    animation: navItemIn .5s cubic-bezier(.22, 1, .36, 1) forwards;
  }
  .floatnav.active .floatnav__item:nth-child(2) { animation-delay: .06s; }
  .floatnav.active .floatnav__item:nth-child(3) { animation-delay: .11s; }
  .floatnav.active .floatnav__item:nth-child(4) { animation-delay: .16s; }
  .floatnav.active .floatnav__item:nth-child(5) { animation-delay: .21s; }
  .floatnav.active .floatnav__item:nth-child(6) { animation-delay: .26s; }
  @keyframes navItemIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .floatnav.active .floatnav__text {
    font-size: 24px !important;
    font-weight: 600 !important;
    letter-spacing: -.01em !important;
  }
  .floatnav.active .floatnav__icon {
    width: 26px !important;
    height: 26px !important;
    margin-right: 16px !important;
    color: var(--orange) !important;
  }
  .floatnav.active .floatnav__cta {
    order: 999 !important;
    margin-top: 28px !important;
    padding: 18px 24px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
    opacity: 0;
    animation: navItemIn .5s cubic-bezier(.22, 1, .36, 1) .32s forwards;
  }
  body.nav-open { overflow: hidden !important; }
  body.nav-open .header__burger { background: transparent !important; border-color: transparent !important; }

  /* Language switcher — integrado e destacado no fullscreen menu */
  .floatnav.active .lang-btn {
    display: block !important;
    width: 100% !important;
    order: 500 !important;
    margin-top: 20px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    opacity: 0;
    animation: navItemIn .5s cubic-bezier(.22, 1, .36, 1) .28s forwards;
  }
  .floatnav.active .lang-trigger {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 16px 18px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    min-height: 52px !important;
  }
  .floatnav.active .lang-dropdown {
    position: static !important;
    width: 100% !important;
    margin-top: 8px !important;
    background: rgba(255, 255, 255, .04) !important;
    border-radius: 14px !important;
    padding: 6px !important;
  }
  .floatnav.active .lang-opt {
    padding: 14px 16px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  /* ---------- HERO: mobile IDENTICO ao desktop — pedestal nitido e vibrante ---------- */
  .hero {
    position: relative !important;
    min-height: auto !important;
    padding: 110px 0 56px !important;
    background: #0d1b2a !important;
    overflow: hidden !important;
  }
  /* Mesma imagem/posicionamento do desktop (cover + right 70%).
     Overlay bem mais leve no pedestal pra o laranja brilhar igual à foto. */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(13, 27, 42, .92) 0%,
        rgba(13, 27, 42, .72) 22%,
        rgba(13, 27, 42, .08) 55%,
        rgba(13, 27, 42, .02) 78%,
        rgba(13, 27, 42, .6)  100%),
      url('../assets/images/hero-bg.jpg') right 70% / cover no-repeat;
    pointer-events: none;
    z-index: 0;
  }
  /* Conteúdo sempre em cima */
  #hero .container.hero__wrap,
  #hero .hero__stats {
    position: relative;
    z-index: 2;
  }
  #hero .hero__content { text-align: left !important; }
  #hero .hero__stats { margin-top: 40px !important; }
  /* Stats row com bg sólido pra destacar dos valores atrás do hero-bg */
  #hero .container.hero__stats-row {
    background: linear-gradient(180deg, rgba(15, 26, 42, .98) 0%, rgba(8, 16, 28, 1) 100%) !important;
    border: 1px solid rgba(219, 85, 0, .22) !important;
    box-shadow:
      0 20px 50px -12px rgba(0, 0, 0, .8),
      0 0 40px -8px rgba(219, 85, 0, .18),
      inset 0 1px 0 rgba(255, 255, 255, .06) !important;
  }
  /* Sem paper-cut empilhado */
  .hero-visual { display: none !important; }

  /* ---------- Cards — garantir stack + reveal suave ---------- */
  .qs__grid,
  .problema__grid,
  .personas__grid,
  .versus__grid,
  .aria__grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* ========================================================
     MÉTODO mobile — pills dinâmicas D/E/I/A + detail polido
     ======================================================== */
  #metodo .aria-flow {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 8px 22px !important;
    margin: 0 -4px 8px !important;
    overflow: visible !important;
  }
  #metodo .aria-node {
    flex: 0 0 auto !important;
    cursor: pointer !important;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1) !important;
  }
  #metodo .aria-node.active { transform: scale(1.08) !important; }
  #metodo .aria-node-inner {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
    border: 1.5px solid rgba(255, 107, 26, .18) !important;
    background: linear-gradient(180deg, rgba(22, 37, 52, .9), rgba(13, 27, 42, .95)) !important;
    transition: border-color .35s, box-shadow .35s, background .35s !important;
  }
  #metodo .aria-node.active .aria-node-inner {
    border-color: var(--orange) !important;
    background: linear-gradient(180deg, rgba(219, 85, 0, .22), rgba(219, 85, 0, .08)) !important;
    box-shadow:
      0 8px 24px -8px rgba(219, 85, 0, .5),
      0 0 0 4px rgba(219, 85, 0, .12) !important;
  }
  #metodo .aria-node-letter {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, .55) !important;
  }
  #metodo .aria-node.active .aria-node-letter { color: var(--white) !important; }
  #metodo .aria-node-num { font-size: 8px !important; color: var(--orange) !important; }
  #metodo .aria-node-label {
    font-size: 9.5px !important;
    letter-spacing: .08em !important;
    margin-top: 8px !important;
    color: rgba(255, 255, 255, .45) !important;
    text-align: center !important;
  }
  #metodo .aria-node.active .aria-node-label { color: var(--orange) !important; }
  #metodo .aria-connector {
    flex: 1 1 auto !important;
    max-width: none !important;
    min-width: 14px !important;
    height: 2px !important;
    background: linear-gradient(90deg, rgba(219, 85, 0, .25), rgba(219, 85, 0, .08)) !important;
    align-self: flex-start !important;
    margin-top: 26px !important;
  }
  #metodo .aria-connector-svg { display: none !important; }

  /* Detail card polido + gradient header laranja */
  #metodo .aria-detail { margin-top: 8px !important; }
  .aria-detail-inner {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    background:
      radial-gradient(ellipse 100% 60% at 50% 0%, rgba(219, 85, 0, .1), transparent 70%),
      linear-gradient(180deg, #162534 0%, #0d1b2a 100%) !important;
  }
  .aria-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .aria-detail-letter {
    position: absolute !important;
    top: 12px !important;
    right: 16px !important;
    font-size: 90px !important;
    color: rgba(219, 85, 0, .10) !important;
    margin: 0 !important;
    pointer-events: none !important;
  }
  .aria-detail-title { font-size: 26px !important; }
  .aria-detail-subtitle { font-size: 12px !important; margin-bottom: 12px !important; }
  .aria-detail-desc { font-size: 14px !important; line-height: 1.65 !important; }
  .aria-detail-bullets li { font-size: 13.5px !important; line-height: 1.5 !important; }
  .aria-detail-bullets li::before { margin-top: 2px !important; }
  .aria-detail-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .aria-detail-tag { font-size: 9.5px !important; }
  .aria-detail-result { font-size: 10.5px !important; }

  /* ========================================================
     CASES mobile — carrossel horizontal com scroll-snap
     ======================================================== */
  /* Hero card de caso destaque (GastroObesi) */
  .cs-hero {
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
  .cs-hero__visual {
    order: 1 !important;
    min-height: 120px !important;
    padding: 28px !important;
    background: linear-gradient(180deg, rgba(219, 85, 0, .08), rgba(219, 85, 0, .02)) !important;
    border-bottom: 1px solid rgba(219, 85, 0, .15) !important;
  }
  .cs-hero__content { order: 2 !important; padding: 24px 20px !important; }
  .cs-hero__quote { font-size: 15px !important; line-height: 1.55 !important; }
  .cs-hero__stats {
    flex-direction: row !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
  }
  .cs-hero__stat { flex: 1 1 30% !important; min-width: 0 !important; }
  .cs-hero__stat-val { font-size: 22px !important; }
  .cs-hero__stat-lbl { font-size: 10px !important; line-height: 1.25 !important; }

  /* Grid de 3 cases → carrossel horizontal snap */
  #cases .cs-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 20px 24px !important;
    margin: 0 -20px !important;
    scrollbar-width: none !important;
  }
  #cases .cs-grid::-webkit-scrollbar { display: none !important; }
  #cases .cs-card {
    flex: 0 0 86% !important;
    min-width: 86% !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 22px 20px !important;
    border: 1px solid rgba(219, 85, 0, .15) !important;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(219, 85, 0, .06), transparent 60%),
      rgba(255, 255, 255, .02) !important;
  }
  #cases .cs-card:hover { transform: none !important; }
  #cases .cs-card__result { font-size: 14px !important; line-height: 1.5 !important; }
  #cases .cs-card__quote { font-size: 13px !important; line-height: 1.55 !important; }

  /* Hint visual pro usuário saber que rola — gradient fade nas bordas */
  #cases .container:has(.cs-grid) {
    position: relative;
  }
  #cases .container:has(.cs-grid)::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 24px;
    width: 36px;
    background: linear-gradient(270deg, #0d1b2a, transparent);
    pointer-events: none;
    z-index: 2;
  }
}


