/* ============================================================
   ARCANO — Seguros e Garantias
   Design System
   Palette: Esmeralda · Grafite · Branco · Dourado (accent da logo)
   ============================================================ */

:root {
  /* Grafite / base */
  --bg:           #0a0e0c;
  --bg-2:         #0e1411;
  --surface:      #121a16;
  --surface-2:    #18221d;
  --surface-3:    #1f2c25;
  --line:         rgba(255, 255, 255, 0.08);
  --line-strong:  rgba(255, 255, 255, 0.14);

  /* Esmeralda (predominante) */
  --em:           #1fb87a;
  --em-bright:    #2fe39a;
  --em-deep:      #0e6e49;
  --em-soft:      rgba(31, 184, 122, 0.14);
  --em-glow:      rgba(47, 227, 154, 0.35);

  /* Dourado (accent da logo) */
  --gold:         #e8c66b;
  --gold-deep:    #c9a14a;

  /* Texto */
  --white:        #f3f7f4;
  --muted:        #9fb3a8;
  --muted-2:      #6f8579;

  /* Tipografia */
  --display: 'Sora', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --serif:   'Fraunces', Georgia, 'Times New Roman', serif;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--em); color: #03130c; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Texto destaque esmeralda */
.em { color: var(--em-bright); }
.gold { color: var(--gold); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 0.96rem;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.35s var(--ease); white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--em-bright), var(--em));
  color: #03130c; box-shadow: 0 10px 30px -8px var(--em-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 45px -10px var(--em-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--white);
  border: 1px solid var(--line-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--em); color: var(--em-bright); background: var(--em-soft); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px; transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 14, 12, 0.72); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line); padding: 12px 36px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 42px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav__logo img { height: 34px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 0.92rem; color: var(--muted); font-weight: 500; transition: color 0.25s; position: relative; }
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--em); transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: 0; }
.nav__burger span { width: 26px; height: 2px; background: var(--white); transition: 0.3s; }

/* ============================================================
   SCROLL VIDEO STAGE
   ============================================================ */
.stage { position: relative; height: 420vh; }
.stage--alt { height: 300vh; }
.stage--tall { height: 380vh; }
.stage__overlay--dim { background:
  radial-gradient(120% 90% at 50% 30%, rgba(10,14,12,0.30), transparent 60%),
  linear-gradient(180deg, rgba(10,14,12,0.62) 0%, rgba(10,14,12,0.42) 45%, rgba(10,14,12,0.80) 100%); }
.stage__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.stage__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.stage__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(10,14,12,0.25), transparent 55%),
    linear-gradient(180deg, rgba(10,14,12,0.55) 0%, rgba(10,14,12,0.35) 35%, rgba(10,14,12,0.78) 100%);
}
.stage__grain { position: absolute; inset: 0; z-index: 3; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* Camadas de texto sobre o vídeo */
.layer {
  position: absolute; z-index: 5; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 0 24px; opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}
.layer > * { max-width: 820px; }
.layer.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.layer__eyebrow {
  font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--em-bright); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.layer__eyebrow::before, .layer__eyebrow::after { content:''; width: 28px; height:1px; background: var(--em); opacity: 0.6; }
.layer h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin-bottom: 22px; }
.layer h2 { font-size: clamp(1.9rem, 5vw, 3.4rem); margin-bottom: 18px; }
.layer p { font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 620px; }
.layer .btn { margin-top: 34px; pointer-events: auto; }

/* Indicador de scroll */
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-2);
  transition: opacity 0.4s;
}
.scroll-hint__mouse { width: 24px; height: 38px; border: 2px solid var(--muted-2); border-radius: 14px; position: relative; }
.scroll-hint__mouse::after {
  content:''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--em-bright);
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:1;top:7px} 70%{opacity:0;top:18px} 100%{opacity:0} }

/* Barra de progresso do vídeo/scroll */
.stage__progress {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--em), var(--em-bright)); z-index: 7;
  box-shadow: 0 0 12px var(--em-glow);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { position: relative; padding: 130px 0; }
.section--tight { padding: 90px 0; }

.eyebrow {
  font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--em-bright); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:''; width: 26px; height:1px; background: var(--em); }

.section__title { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 760px; margin-bottom: 22px; }
.section__lead { font-size: 1.15rem; color: var(--muted); max-width: 620px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* Serifa editorial reutilizável */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.title-serif { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 16ch; }
.title-serif em { font-style: italic; color: var(--em-bright); }

/* ============================================================
   PROBLEMA — "fears" como linhas editoriais (sem caixas)
   ============================================================ */
.pain { background: var(--bg-2); position: relative; overflow: hidden; }
.pain__ghost { position: absolute; right: 2%; top: -4%; font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 38vw; line-height: 1; color: rgba(255,255,255,0.018); pointer-events: none; user-select: none; z-index: 0; }
.pain .wrap { position: relative; z-index: 1; }
.fears { margin-top: 64px; border-top: 1px solid var(--line-strong); }
.fear {
  display: grid; grid-template-columns: 54px 1fr 24px; align-items: center; gap: 30px;
  padding: 40px 8px; border-bottom: 1px solid var(--line); position: relative;
  transition: background 0.55s var(--ease), padding 0.45s var(--ease);
}
.fear__i { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--em); }
.fear__t {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 3.1vw, 2.45rem);
  line-height: 1.18; color: var(--white); transition: transform 0.55s var(--ease);
}
.fear__t em { font-style: italic; color: var(--muted); }
.fear__dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--line-strong); transition: 0.45s var(--ease); justify-self: end; }
.fear:hover { background: linear-gradient(90deg, var(--em-soft), transparent 78%); padding-left: 22px; }
.fear:hover .fear__t { transform: translateX(10px); }
.fear:hover .fear__t em { color: var(--em-bright); }
.fear:hover .fear__dot { background: var(--em-bright); border-color: var(--em-bright); box-shadow: 0 0 18px var(--em-glow); }
.pain__note { margin-top: 54px; max-width: 760px; color: var(--muted); font-size: 1.15rem; }
.pain__note p + p { margin-top: 1.1em; }
.pain__note strong { color: var(--white); }

/* ===== Seção SOLUÇÃO: foto do escudo cobrindo a direita, texto à esquerda ===== */
.solucao { position: relative; overflow: hidden; isolation: isolate; }
.solucao::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: url("../img/shield.png") right center / 60% auto no-repeat;
  opacity: 0.5;
}
.solucao::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg,
    var(--bg) 32%, rgba(8,12,10,0.30) 56%, rgba(8,12,10,0) 78%);
}
.solucao .wrap { position: relative; z-index: 1; }
.solucao .reveal, .solucao .ledger { max-width: 640px; }

/* ============================================================
   LEDGER — pilares como linhas de dossiê (numerais romanos)
   ============================================================ */
.ledger { margin-top: 66px; border-top: 1px solid var(--line-strong); }
.lrow {
  position: relative; display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 50px;
  padding: 52px 8px; border-bottom: 1px solid var(--line); transition: padding 0.5s var(--ease);
}
.lrow__num {
  font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong); transition: 0.5s var(--ease); align-self: start;
}
.lrow__t { font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 2rem); margin-bottom: 14px; letter-spacing: -0.01em; }
.lrow__b { color: var(--muted); font-size: 1.08rem; max-width: 540px; }
.lrow::after { content:''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--em-bright); transition: width 0.6s var(--ease); }
.lrow:hover { padding-left: 26px; }
.lrow:hover::after { width: 100%; }
.lrow:hover .lrow__num { -webkit-text-stroke-color: var(--em); color: var(--em-soft); }

/* ============================================================
   FIGURE — número único dramático (substitui a grade de stats)
   ============================================================ */
.figure { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.figure__in { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.figure__big {
  font-family: var(--serif); font-weight: 300; font-size: clamp(3.6rem, 13vw, 9.5rem);
  line-height: 0.86; letter-spacing: -0.03em; color: var(--white);
}
.figure__big b {
  font-weight: 500; font-style: italic;
  background: linear-gradient(115deg, var(--em-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.figure__cap { font-size: 1.22rem; color: var(--muted); max-width: 440px; line-height: 1.55; }
.figure__cap strong { color: var(--white); font-weight: 500; }
.figure__meta { margin-top: 30px; display: flex; flex-wrap: wrap; font-family: var(--display); font-size: 0.9rem; color: var(--white); }
.figure__meta span { white-space: nowrap; }
.figure__meta span:not(:last-child)::after { content: '/'; margin: 0 18px; color: var(--em); font-weight: 400; }

/* ============================================================
   SERVIÇOS — índice editorial em duas colunas (sem cards)
   ============================================================ */
.services { background: var(--bg-2); }
.toc { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.toc__item {
  display: grid; grid-template-columns: 42px 1fr; gap: 20px; align-items: baseline;
  padding: 30px 4px; border-bottom: 1px solid var(--line); transition: padding 0.4s var(--ease);
}
.toc__n { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--em); }
.toc__h { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; transition: color 0.3s; }
.toc__d { color: var(--muted); font-size: 0.98rem; }
.toc__item:hover { padding-left: 14px; }
.toc__item:hover .toc__h { color: var(--em-bright); }

/* ---------- Sobre / Ramiro ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }
.about__badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--surface-2);
  border: 1px solid var(--em); border-radius: 16px; padding: 18px 24px; backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.about__badge strong { font-family: var(--display); color: var(--em-bright); font-size: 1.3rem; display:block; }
.about__badge span { color: var(--muted); font-size: 0.85rem; }
.about__quote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; font-weight: 400; line-height: 1.45;
  margin: 26px 0; color: var(--white); position: relative; padding-left: 22px; border-left: 2px solid var(--em); }
.about__sign { color: var(--gold); font-family: var(--display); font-weight: 600; margin-top: 24px; }
.about__sign span { display:block; color: var(--muted); font-weight: 400; font-size: 0.9rem; font-family: var(--body); }

/* ---------- FAQ ---------- */
.faq__list { margin-top: 50px; max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; color: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.15rem;
}
.faq__q:hover { color: var(--em-bright); }
.faq__icon { min-width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: 0.35s var(--ease); color: var(--em-bright); }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--em); color: #03130c; border-color: var(--em); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { color: var(--muted); padding: 0 4px 26px; font-size: 1.02rem; }
.faq__a p + p { padding-top: 0; margin-top: -8px; }

/* ---------- CTA final ---------- */
.cta { position: relative; overflow: hidden; }
.cta__box {
  background: linear-gradient(135deg, var(--em-deep), var(--surface-2));
  border: 1px solid var(--em); border-radius: 28px; padding: 70px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta__box::before { content:''; position: absolute; top:-50%; right:-10%; width: 480px; height: 480px;
  background: radial-gradient(circle, var(--em-glow), transparent 70%); filter: blur(40px); }
.cta__box h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; position: relative; }
.cta__box p { color: rgba(243,247,244,0.85); max-width: 560px; margin: 0 auto 34px; position: relative; font-size: 1.1rem; }

/* ---------- CTA actions ---------- */
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Agendar (Calendly) ---------- */
.agendar { background: var(--bg-2); }
.agendar__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.agendar__head .eyebrow { justify-content: center; }
.agendar__head .title-serif { max-width: 100%; margin: 0 auto 16px; }
.agendar__head .section__lead { margin: 0 auto; }
.calendly-inline-widget {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2);
}

/* ---------- Avaliações Google ---------- */
.reviews { background: var(--bg-2); }
.reviews__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 56px; }
.reviews__score { display: flex; align-items: center; gap: 26px; }
.reviews__num { font-family: var(--serif); font-weight: 400; font-size: clamp(3.4rem, 7vw, 5rem); line-height: 1; color: var(--white); }
.reviews__rs { display: flex; flex-direction: column; gap: 6px; }
.reviews__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.3rem; }
.reviews__gline { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.95rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev { display: flex; flex-direction: column; gap: 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; transition: all 0.4s var(--ease); }
.rev:hover { border-color: var(--em); transform: translateY(-5px); box-shadow: 0 24px 50px -30px var(--em-glow); }
.rev__head { display: flex; align-items: center; justify-content: space-between; }
.rev__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.rev__text { color: var(--white); font-size: 1rem; line-height: 1.62; flex: 1; }
.rev__author { display: flex; align-items: center; gap: 13px; padding-top: 4px; border-top: 1px solid var(--line); margin-top: 2px; padding-top: 16px; }
.rev__avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: #03130c; background: linear-gradient(135deg, var(--em-bright), var(--em-deep)); }
.rev__who strong { display: block; font-size: 0.94rem; font-weight: 600; }
.rev__who span { font-size: 0.78rem; color: var(--muted-2); display: flex; align-items: center; gap: 5px; }
.reviews__cta { text-align: center; margin-top: 48px; }

@media (max-width: 920px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer__logo img { height: 50px; margin-bottom: 20px; }
.footer__grid p { color: var(--muted); font-size: 0.96rem; max-width: 320px; }
.footer__col h5 { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted); padding: 7px 0; font-size: 0.96rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--em-bright); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px; color: var(--muted-2); font-size: 0.88rem; }

/* ---------- WhatsApp float ---------- */
.wpp-float { position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); }
.wpp-float:hover { transform: scale(1.1) translateY(-2px); }
.wpp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================================
   LOGIN MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,8,6,0.72); backdrop-filter: blur(8px); }
.modal__card {
  position: relative; z-index: 2; width: 100%; max-width: 440px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: 24px; padding: 44px 40px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8); animation: pop 0.4s var(--ease);
}
@keyframes pop { from { opacity:0; transform: translateY(20px) scale(0.97);} to {opacity:1; transform:none;} }
.modal__close { position: absolute; top: 18px; right: 18px; background: none; border: 0; color: var(--muted);
  cursor: pointer; font-size: 1.5rem; line-height: 1; transition: color 0.25s; }
.modal__close:hover { color: var(--white); }
.modal__logo { height: 46px; margin: 0 auto 22px; }
.modal h3 { text-align: center; font-size: 1.5rem; margin-bottom: 6px; }
.modal__sub { text-align: center; color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 14px 16px; color: var(--white); font-family: var(--body); font-size: 0.98rem; transition: border-color 0.25s;
}
.field input:focus { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px var(--em-soft); }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal__hint { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 20px; line-height: 1.7; }
.modal__hint code { color: var(--em-bright); background: var(--em-soft); padding: 2px 7px; border-radius: 5px; font-size: 0.8rem; }
.modal__error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff9b9b;
  padding: 12px 14px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 18px; display: none; }
.modal__error.show { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav { padding: 14px 20px; }
  .nav__logo img { height: 34px; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 20px; padding: 22px 24px; margin: 0;
    background: rgba(10, 14, 12, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.05rem; }
  .nav__burger { display: flex; order: 3; }
  .nav__cta { order: 2; }
  .nav__cta .btn { padding: 11px 18px; font-size: 0.85rem; }
  .toc { grid-template-columns: 1fr; gap: 0; }
  .solucao__top { grid-template-columns: 1fr; gap: 34px; }
  .lrow { grid-template-columns: 0.4fr 1.6fr; gap: 26px; }
  .figure__in { grid-template-columns: 1fr; gap: 30px; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .nav { padding: 14px 20px; }
  .section { padding: 90px 0; }
  .cta__box { padding: 48px 26px; }
  .fear { grid-template-columns: 32px 1fr; gap: 16px; }
  .fear__dot { display: none; }
  .lrow { grid-template-columns: 1fr; gap: 10px; }
  .lrow__num { font-size: 2.6rem; }
}

/* Mobile: vídeo controlado pela rolagem — precisa de pista de scroll */
@media (max-width: 760px) {
  .stage { height: 340vh; }
  .stage--alt { height: 260vh; }
  .stage--tall { height: 340vh; }
  .layer h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .layer h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}
