/* ============================================================
   Aldo Mídias, Site
   Estética Higgsfield: dark, verde-limão neon, alto contraste.
   Tipografia: Space Grotesk (display) + Inter (corpo).
   ============================================================ */

/* ===== Tokens ===== */
:root {
  --bg:        #0A0A0A;
  --bg-alt:    #101010;
  --card:      #161616;
  --card-2:    #1C1C1C;
  --line:      #262626;
  --line-soft: #1E1E1E;

  --lime:      #C6F24E;
  --lime-dim:  #A9D63C;
  --lime-glow: rgba(198, 242, 78, .22);

  --white:     #FFFFFF;
  --text:      #EDEDED;
  --muted:     #9A9A9A;
  --faint:     #6B6B6B;

  --display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:   16px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--lime); color: #0A0A0A; }

/* ===== Layout ===== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 130px); position: relative; }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }

/* ===== Tipografia ===== */
.display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: none;
  line-height: 1.03;
  letter-spacing: -.02em;
}
h1.display { font-size: clamp(33px, 5.2vw, 60px); }
h2.display { font-size: clamp(28px, 4.4vw, 48px); }
h3.display { font-size: clamp(20px, 2.6vw, 26px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lime);
  padding: 7px 14px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(198,242,78,.05);
}
.eyebrow::before { content: "✦"; color: var(--lime); font-size: 11px; }

.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 620px; }
.lime { color: var(--lime); }
.nowrap { white-space: nowrap; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 16px 0 14px; }

/* ===== Botões ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: .1px;
  padding: 14px 24px; border-radius: 999px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--lime); color: #0A0A0A; }
.btn--primary:hover { background: #d4fa5e; transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(255,255,255,.22); color: var(--white); background: rgba(10,10,10,.42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); background: rgba(10,10,10,.6); }
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Dropdown de Serviços (injetado por script.js) ===== */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-link { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > .nav-link::after { display: none; }
.nav-caret { font-size: 9px; color: var(--faint); transition: transform .22s ease, color .2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); color: var(--lime); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 330px; padding: 10px;
  background: rgba(13,13,13,.98); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(7px); }
.dropdown a { display: flex; gap: 12px; align-items: flex-start; padding: 12px 13px; border-radius: 12px; transition: background .15s ease; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(198,242,78,.06); }
.dropdown__ic { color: var(--lime); font-size: 18px; line-height: 1.35; flex: none; width: 24px; text-align: center; }
.dropdown b { color: var(--white); font-size: 14px; font-weight: 600; display: block; }
.dropdown .d { color: var(--muted); font-size: 12.5px; display: block; line-height: 1.4; margin-top: 2px; }
.dropdown a:hover .d { color: var(--muted); }

/* Sub-links de serviço no menu mobile */
.mnav-sub { font-size: 15px !important; color: var(--muted) !important; padding-left: 22px !important; display: flex; align-items: center; gap: 9px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled { border-bottom-color: var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .3px; }
.brand .logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--lime); color: #0A0A0A;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 18px; line-height: 1;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); color: var(--white); font-size: 20px; }

/* ===== Hero ===== */
.hero { position: relative; padding-top: clamp(50px, 8vw, 90px); padding-bottom: clamp(150px, 22vw, 300px); overflow: hidden; }

/* Background do hero: imagem integrada + grade sutil que deriva + brilhos difusos + spot no cursor */
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,.72) 30%, rgba(10,10,10,.30) 58%, rgba(10,10,10,.55) 86%, var(--bg) 100%),
    url("assets/img/hero.webp") center bottom / cover no-repeat;
}
/* grade fina que deriva devagar */
.hero__bg::before {
  content: ""; position: absolute; inset: -60px;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(125% 82% at 50% 0%, #000 22%, transparent 72%);
  mask-image: radial-gradient(125% 82% at 50% 0%, #000 22%, transparent 72%);
  animation: gridDrift 44s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 58px 58px; } }
/* aurora animada: brilhos que derivam devagar, dão vida ao hero */
.hero__bg::after {
  content: ""; position: absolute; inset: -12%;
  background:
    radial-gradient(560px circle at 68% 12%, rgba(198,242,78,.20), transparent 60%),
    radial-gradient(620px circle at 22% 4%, rgba(120,180,255,.08), transparent 60%),
    radial-gradient(480px circle at 84% 60%, rgba(198,242,78,.10), transparent 62%);
  filter: blur(14px);
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.12); }
}
/* luz interativa mais forte dentro do hero (segue o cursor) */
.hero-spot {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 60%) var(--my, 26%), rgba(198,242,78,.16), transparent 62%);
  transition: background .12s ease;
}

/* Spotlight global, segue o cursor em todas as páginas (técnica modelada da Colmeia) */
.page-spot {
  position: fixed; inset: 0; z-index: 4; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 28%), rgba(198,242,78,.07), transparent 60%);
  transition: background .12s ease;
}
@media (hover: none) { .page-spot { display: none; } }
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 860px; margin-inline: auto; text-align: center; position: relative; }
/* scrim escuro atrás do texto do hero, pra dar contraste sobre a imagem de fundo */
.hero__inner::before {
  content: ""; position: absolute; inset: -10% -14% -18%; z-index: -1; pointer-events: none;
  background: radial-gradient(115% 88% at 50% 40%, rgba(10,10,10,.9), rgba(10,10,10,.55) 52%, transparent 78%);
  filter: blur(10px);
}
.hero h1, .hero .lead { text-shadow: 0 2px 30px rgba(0,0,0,.75); }
.hero h1 { margin: 22px 0 20px; }
.hero h1 .lime { text-shadow: 0 0 36px rgba(198,242,78,.55), 0 0 4px rgba(198,242,78,.5); }
.hero .lead { margin-inline: auto; }
/* eyebrow do hero como badge premium */
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid rgba(198,242,78,.32); border-radius: 999px;
  background: rgba(198,242,78,.06); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(198,242,78,.1);
}
/* indicador de scroll (mouse com bolinha descendo) */
.hero::after {
  content: ""; position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.28); border-radius: 14px; z-index: 2; pointer-events: none;
  background: radial-gradient(circle 3px at 50% 24%, var(--lime) 96%, transparent) no-repeat;
  animation: scrollHint 1.9s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { background-position: 50% 24%; opacity: .9; }
  60% { background-position: 50% 64%; opacity: .25; }
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero__pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text);
  padding: 8px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: rgba(10,10,10,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none; }

.hero__media {
  position: relative; z-index: 1; margin-top: 56px;
  max-width: 960px; margin-inline: auto;
}

/* ===== Media placeholder (troca por <img> real depois) ===== */
.media {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(198,242,78,.10), transparent 55%),
    linear-gradient(135deg, #141414, #0d0d0d);
  display: grid; place-items: center; min-height: 200px;
}
.media::after {
  content: attr(data-slot);
  font-family: var(--body); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--faint); border: 1px dashed var(--line); padding: 6px 12px; border-radius: 8px;
  background: rgba(0,0,0,.35);
}
.media--wide { aspect-ratio: 16 / 8.5; }
.media--square { aspect-ratio: 1; }
.media--portrait { aspect-ratio: 4 / 5; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media:has(img)::after { content: none; }

/* ===== Faixa de tecnologias / marquee ===== */
.strip { border-block: 1px solid var(--line-soft); padding-block: 26px; }
.strip__label { text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); margin-bottom: 20px; }
.marquee-wrap { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee { display: flex; gap: 46px; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee span { font-family: var(--display); text-transform: uppercase; font-size: clamp(16px, 2vw, 22px); color: rgba(198,242,78,.5); letter-spacing: 1px; transition: color .25s; white-space: nowrap; }
.marquee span:hover { color: var(--lime); }

/* ===== Problema ===== */
.problem__statement { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(26px, 4vw, 44px); line-height: 1.1; max-width: 900px; }
.problem__statement .muted { color: #3d3d3d; }
.problem__sub { margin-top: 26px; max-width: 640px; }

/* Segunda dobra "O problema real": 50/50 texto + imagem lateral */
.problem-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.problem-grid .problem__statement { max-width: none; }
.problem-grid__media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; background: linear-gradient(135deg, #141414, #0d0d0d); }
.problem-grid__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid__media { aspect-ratio: 16/10; }
}

/* Checklist (usado em "Quem está por trás" e onde fizer sentido) */
.check-list { display: grid; gap: 12px; margin-top: 24px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.check-list li::before { content: "✓"; color: var(--lime); font-weight: 700; flex: none; line-height: 1.5; }

/* ===== Grid de serviços ===== */
.grid { display: grid; gap: 18px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--services .card--wide { grid-column: span 2; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: #333; background: var(--card-2); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(198,242,78,.10); border: 1px solid rgba(198,242,78,.25); color: var(--lime);
  margin-bottom: 18px; font-size: 22px;
}
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--white); font-family: var(--body); text-transform: none; letter-spacing: 0; }
.card p { font-size: 14.5px; color: var(--muted); }
.card__media { margin: -26px -26px 20px; }
.card__media .media { border: none; border-bottom: 1px solid var(--line); border-radius: 0; min-height: 150px; }
/* bento organizado: mesma altura de imagem nos cards de serviço */
.grid--services .card__media .media { height: 210px; min-height: 0; }
.grid--services .card__media img { object-position: center; }
/* posicionamento pensado por imagem (o assunto de cada uma centralizado no corte) */
.grid--services .card__media img.pos-gears { object-position: center; }
.grid--services .card__media img.pos-blueprint { object-position: center 42%; }
.grid--services .card__media img.pos-brain { object-position: center 46%; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 12px; color: var(--muted); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }

/* ===== Como funciona ===== */
.grid--steps { grid-template-columns: repeat(3, 1fr); }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step__num { font-family: var(--display); font-size: 15px; color: #0A0A0A; background: var(--lime); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; color: var(--white); font-family: var(--body); text-transform: none; letter-spacing: 0; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ===== Customer story ===== */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 52px); }
.story blockquote { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(22px, 2.8vw, 33px); line-height: 1.15; }
.story cite { display: block; margin-top: 22px; font-style: normal; font-size: 14px; color: var(--muted); }
.story cite b { color: var(--white); font-weight: 600; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(40px, 6vw, 68px); color: var(--white); line-height: 1; }
.stat__num .lime { color: var(--lime); }
.stat__label { font-size: 14px; color: var(--muted); margin-top: 10px; }
.stat { padding: 22px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }

/* ===== Depoimentos ===== */
.grid--reviews { grid-template-columns: repeat(3, 1fr); }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.review__stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; }
.review p { font-size: 15px; color: var(--text); }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #2a2a2a, #171717); border: 1px solid var(--line); flex: none; }
.review__who b { display: block; font-size: 14px; color: var(--white); }
.review__who span { font-size: 12.5px; color: var(--faint); }
.review--placeholder { border-style: dashed; opacity: .8; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--card); overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-size: 16px; font-weight: 500; color: var(--white); }
.faq__q .ic { color: var(--lime); font-size: 22px; transition: transform .25s ease; flex: none; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 22px; color: var(--muted); font-size: 15px; }

/* ===== CTA final ===== */
.cta-final { position: relative; overflow: hidden; text-align: center; }
/* "Vamos começar": fundo escuro + imagem (aparece assim que cta-fundo.webp existir; sem ela, fica o fundo escuro) */
.cta-final__box { position: relative; border: 1px solid var(--line); border-radius: 24px; padding: clamp(44px, 7vw, 84px) var(--gutter); overflow: hidden;
  background-color: #0d0d0d;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,.74), rgba(10,10,10,.9)),
    url("assets/img/cta-fundo.webp");
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.cta-final__box > .cta-final__glow { position: absolute; inset: 0; z-index: 0; width: auto; height: auto; transform: none; border-radius: inherit; background: radial-gradient(120% 80% at 50% 118%, var(--lime-glow) 0%, transparent 60%); pointer-events: none; }
.cta-final__box > * { position: relative; z-index: 1; }
.cta-final h2 { margin-bottom: 18px; }
.cta-final .lead { margin: 0 auto 32px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding-block: 48px; }
.footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__meta { font-size: 13px; color: var(--faint); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; max-width: 100%; }
.footer__links a { font-size: 14px; color: var(--muted); }
.footer__links a:hover { color: var(--lime); }

/* ===== Reveal on scroll (entrada moderna: fade + slide + blur) ===== */
.reveal {
  opacity: 0; transform: translateY(30px); filter: blur(8px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1), filter .75s ease;
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: none; filter: none; }
/* variantes direcionais e criativas */
.reveal--left  { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal--scale { transform: scale(.92); }
.reveal--up-lg { transform: translateY(56px); }
.reveal--clip  { clip-path: inset(0 0 100% 0); transform: none; filter: none; opacity: 1; transition: clip-path .9s cubic-bezier(.22,.61,.36,1); }
.reveal.in.reveal--left, .reveal.in.reveal--right, .reveal.in.reveal--scale, .reveal.in.reveal--up-lg { transform: none; }
.reveal.in.reveal--clip { clip-path: inset(0 0 0 0); }

/* Entrada do hero no carregamento (stagger) */
.hero__inner > * { animation: heroIn .85s cubic-bezier(.22,.61,.36,1) both; }
.hero__inner > *:nth-child(1) { animation-delay: .05s; }
.hero__inner > *:nth-child(2) { animation-delay: .13s; }
.hero__inner > *:nth-child(3) { animation-delay: .21s; }
.hero__inner > *:nth-child(4) { animation-delay: .29s; }
.hero__inner > *:nth-child(5) { animation-delay: .37s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .grid--services, .grid--steps, .grid--reviews, .stats { grid-template-columns: 1fr; }
  .grid--services .card--wide { grid-column: span 1; }
  .story { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .footer .wrap { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; align-items: center; flex-wrap: nowrap; gap: 14px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* Menu mobile aberto */
.mobile-nav { display: none; position: fixed; inset: 68px 0 0; z-index: 49; background: rgba(10,10,10,.97); backdrop-filter: blur(8px); padding: 30px var(--gutter); flex-direction: column; gap: 6px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 16px 4px; font-size: 18px; border-bottom: 1px solid var(--line-soft); color: var(--white); }
.mobile-nav .btn { margin-top: 18px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  .reveal, .reveal--clip { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .hero__inner > *, .page-hero--img .wrap > * { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero::after { display: none; }
  .page-spot, .hero-spot { transition: none; }
}

/* ============================================================
   PÁGINAS INTERNAS, componentes adicionais
   ============================================================ */

/* Hero de página interna */
.page-hero { position: relative; padding-block: clamp(52px, 8vw, 96px) clamp(30px, 5vw, 54px); overflow: hidden; text-align: center; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side at 50% -10%, rgba(198,242,78,.12), transparent 70%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin: 16px auto 16px; max-width: 900px; }
.page-hero .lead { margin-inline: auto; }

/* Hero das páginas de SERVIÇO padronizada com a hero da home (imagem + scrim + aurora + entrada) */
.page-hero--img { padding-block: clamp(46px, 7vw, 84px) clamp(56px, 8vw, 100px); }
.page-hero--img .page-hero__bg {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,.72) 30%, rgba(10,10,10,.32) 58%, rgba(10,10,10,.58) 86%, var(--bg) 100%),
    url("assets/img/hero.webp") center bottom / cover no-repeat;
}
.page-hero--img .page-hero__bg::after {
  content: ""; position: absolute; inset: -12%;
  background:
    radial-gradient(560px circle at 68% 12%, rgba(198,242,78,.20), transparent 60%),
    radial-gradient(480px circle at 84% 60%, rgba(198,242,78,.10), transparent 62%);
  filter: blur(14px); animation: auroraDrift 18s ease-in-out infinite alternate;
}
.page-hero--img .wrap { position: relative; }
.page-hero--img .wrap::before {
  content: ""; position: absolute; inset: -12% -14% -16%; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 88% at 50% 46%, rgba(10,10,10,.92), rgba(10,10,10,.55) 52%, transparent 78%);
  filter: blur(10px);
}
.page-hero--img h1, .page-hero--img .lead { text-shadow: 0 2px 30px rgba(0,0,0,.78); }
.page-hero--img h1 .lime { text-shadow: 0 0 36px rgba(198,242,78,.55), 0 0 4px rgba(198,242,78,.5); }
.page-hero--img .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px !important;
  padding: 8px 16px; border: 1px solid rgba(198,242,78,.32); border-radius: 999px;
  background: rgba(198,242,78,.06); box-shadow: 0 0 24px rgba(198,242,78,.1);
}
.page-hero--img .wrap > * { animation: heroIn .85s cubic-bezier(.22,.61,.36,1) both; }
.page-hero--img .wrap > *:nth-child(1) { animation-delay: .04s; }
.page-hero--img .wrap > *:nth-child(2) { animation-delay: .11s; }
.page-hero--img .wrap > *:nth-child(3) { animation-delay: .18s; }
.page-hero--img .wrap > *:nth-child(4) { animation-delay: .25s; }
.page-hero--img .wrap > *:nth-child(5) { animation-delay: .32s; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--faint); display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { color: var(--faint); }

/* ===== Timeline (Nossa história) ===== */
.timeline { max-width: 760px; margin-inline: auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--lime), var(--line) 60%); }
.tl-item { position: relative; padding: 0 0 40px 60px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot { position: absolute; left: 9px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); border: 2px solid var(--lime); box-shadow: 0 0 0 4px rgba(198,242,78,.10); }
.tl-item__year { font-family: var(--display); font-weight: 700; color: var(--lime); font-size: 15px; letter-spacing: .5px; margin-bottom: 6px; }
.tl-item h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 15px; }

/* ===== Página de serviço ===== */
.svc-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.svc-lead { max-width: 780px; margin-inline: auto; }

/* Pilares / o que entra */
.grid--pillars { grid-template-columns: repeat(3, 1fr); }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.pillar:hover { transform: translateY(-4px); border-color: #333; background: var(--card-2); }
.pillar__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(198,242,78,.10); border: 1px solid rgba(198,242,78,.25); color: var(--lime); margin-bottom: 18px; font-size: 22px; transition: transform .3s ease; }
.pillar:hover .pillar__ic { transform: translateY(-3px) rotate(-7deg); }
.pillar h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.pillar p { font-size: 14.5px; color: var(--muted); }

/* Checklist, o que você recebe */
.checklist { display: grid; gap: 13px; max-width: 820px; margin-inline: auto; }
.checklist--2 { grid-template-columns: 1fr 1fr; column-gap: 34px; }
.checklist li { position: relative; padding-left: 34px; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; border-radius: 7px; background: rgba(198,242,78,.12); border: 1px solid rgba(198,242,78,.3); color: var(--lime); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.checklist li b, .checklist li strong { color: var(--white); font-weight: 600; }
@media (max-width: 640px) { .checklist--2 { grid-template-columns: 1fr; } }

/* Card de preço / oferta */
.price-card { max-width: 540px; margin-inline: auto; text-align: center; background: linear-gradient(180deg, #121212, #0b0b0b); border: 1px solid var(--line); border-radius: 24px; padding: clamp(32px, 5vw, 50px); position: relative; overflow: hidden; }
.price-card > .price-card__glow { position: absolute; inset: 0; z-index: 0; width: auto; height: auto; transform: none; border-radius: inherit; background: radial-gradient(120% 80% at 50% 118%, var(--lime-glow) 0%, transparent 60%); pointer-events: none; }
.price-card > * { position: relative; z-index: 1; }
.price-card__from { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); }
.price-card__value { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 7vw, 58px); color: var(--white); line-height: 1; margin: 8px 0 8px; }
.price-card__value .lime { color: var(--lime); }
.price-card__value small { font-size: .34em; color: var(--faint); font-weight: 600; letter-spacing: .5px; }
.price-card__note { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; max-width: 400px; margin-inline: auto; }

/* Link "ver detalhes" nos cards da home */
.card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--lime); font-weight: 600; font-size: 14px; transition: gap .2s ease; }
.card__more:hover { gap: 11px; }

/* Outros serviços (links internos no fim da página) */
.grid--related { grid-template-columns: repeat(3, 1fr); }
.related-card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: #333; background: var(--card-2); }
.related-card__ic { font-size: 22px; color: var(--lime); margin-bottom: 12px; }
.related-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.related-card p { font-size: 13.5px; color: var(--muted); }
.related-card__link { display: inline-block; margin-top: 12px; color: var(--lime); font-weight: 600; font-size: 13.5px; }
@media (max-width: 860px) { .grid--pillars, .grid--related { grid-template-columns: 1fr; } }

/* ===== Blog grid ===== */
.grid--blog { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.post-card:hover { transform: translateY(-4px); border-color: #333; }
.post-card__media { min-height: 168px; border: none !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; }
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__cat { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.post-card h3 { font-size: 19px; color: var(--white); line-height: 1.25; }
.post-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.post-card__meta { font-size: 13px; color: var(--faint); margin-top: 4px; }
.post-card__link { color: var(--lime); font-weight: 600; font-size: 14px; }

/* ===== Artigo ===== */
.article { max-width: 760px; margin-inline: auto; }
.article__head { text-align: center; margin-bottom: 34px; }
.article__cat { color: var(--lime); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.article__head h1 { margin: 14px 0 16px; }
.article__meta { font-size: 14px; color: var(--faint); }
.article__cover { margin: 0 auto 40px; max-width: 960px; }
.article__body { font-size: 17px; line-height: 1.8; color: var(--text); }
.article__body h2 { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(24px, 3vw, 32px); color: var(--white); margin: 42px 0 16px; }
.article__body h3 { font-size: 21px; color: var(--white); margin: 30px 0 12px; }
.article__body p { margin-bottom: 20px; }
.article__body ul, .article__body ol { margin: 0 0 20px 22px; color: var(--text); }
.article__body li { margin-bottom: 10px; }
.article__body a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
/* links que são botões dentro do artigo não herdam a cor/sublinhado de link */
.article__body a.btn { text-decoration: none; }
.article__body a.btn--primary { color: #0A0A0A; }
.article__body a.btn--ghost { color: var(--white); }
.article__body strong { color: var(--white); }
.article__body blockquote { border-left: 3px solid var(--lime); padding: 6px 0 6px 20px; margin: 26px 0; color: var(--white); font-size: 19px; }
/* Sumário (índice) do artigo */
.toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin: 0 0 36px; }
.toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--faint); margin-bottom: 12px; font-weight: 600; }
.toc ol { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.95; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--lime); }
.article__body h2 { scroll-margin-top: 90px; }

.callout { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--lime); border-radius: var(--radius-sm); padding: 22px 24px; margin: 30px 0; }
.callout p { margin: 0; color: var(--muted); font-size: 15.5px; }
.article__cta { text-align: center; margin-top: 46px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #121212, #0b0b0b); }
.article__cta h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.article__cta p { color: var(--muted); margin-bottom: 20px; }

/* ===== Formulários (contato + agendar) ===== */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; color: var(--text); font-weight: 500; }
.field label .req { color: var(--lime); }
.field input, .field select, .field textarea {
  appearance: none; -webkit-appearance: none;
  background: #121212; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; color: var(--white); font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C6F24E' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; cursor: pointer;
}
.field select option { background: #141414; color: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(198,242,78,.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { margin-top: 6px; }
.form__note { font-size: 13px; color: var(--faint); text-align: center; }
.seg { display: flex; gap: 10px; }
.seg label { flex: 1; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: block; text-align: center; padding: 12px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; color: var(--muted); font-size: 14px; transition: all .15s; }
.seg input:checked + span { border-color: var(--lime); color: var(--lime); background: rgba(198,242,78,.06); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.contact-info__ic { color: var(--lime); font-size: 20px; margin-top: 2px; }
.contact-info__item b { color: var(--white); display: block; font-size: 15px; }
.contact-info__item span { color: var(--muted); font-size: 14px; }
.card-pad { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }

/* ===== Calendário (agendar) ===== */
.booking { max-width: 940px; margin-inline: auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.cal { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal__title { font-weight: 600; color: var(--white); text-transform: capitalize; }
.cal__nav { display: flex; gap: 8px; }
.cal__nav button { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); color: var(--white); font-size: 16px; transition: all .15s; }
.cal__nav button:hover:not(:disabled) { border-color: var(--lime); color: var(--lime); }
.cal__nav button:disabled { opacity: .3; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { text-align: center; font-size: 12px; color: var(--faint); padding: 6px 0; }
.cal__day { aspect-ratio: 1; border-radius: 10px; border: 1px solid transparent; color: var(--text); font-size: 14px; display: grid; place-items: center; transition: all .12s; }
.cal__day:hover:not(:disabled) { border-color: var(--lime); }
.cal__day:disabled { color: #3a3a3a; cursor: not-allowed; }
.cal__day.selected { background: var(--lime); color: #0A0A0A; font-weight: 600; }
.cal__day.today { border-color: var(--line); }
.slots { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.slots h3 { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.slots__hint { font-size: 13px; color: var(--faint); margin-bottom: 16px; }
.slots__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.slot { padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-size: 14px; transition: all .12s; }
.slot:hover:not(:disabled) { border-color: var(--lime); color: var(--lime); }
.slot.selected { background: var(--lime); color: #0A0A0A; font-weight: 600; }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-summary { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--lime); border-radius: 12px; background: rgba(198,242,78,.06); margin-bottom: 20px; font-size: 14px; color: var(--white); }
.booking-summary b { color: var(--lime); }

/* ===== Calculadora / diagnóstico ===== */
.calc { max-width: 720px; margin-inline: auto; }
.calc__q { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 14px; }
.calc__q p { color: var(--white); font-weight: 500; margin-bottom: 14px; font-size: 16px; }
.calc__opts { display: flex; gap: 10px; flex-wrap: wrap; }
.calc__opts label { position: relative; }
.calc__opts input { position: absolute; opacity: 0; }
.calc__opts span { display: block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; color: var(--muted); font-size: 14px; transition: all .15s; }
.calc__opts input:checked + span { border-color: var(--lime); color: var(--lime); background: rgba(198,242,78,.06); }
.calc__result { display: none; text-align: center; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-top: 10px; }
.calc__result.show { display: block; }
.calc__score { font-family: var(--display); font-weight: 700; font-size: 72px; line-height: 1; color: var(--lime); }
.calc__score small { font-size: 26px; color: var(--faint); }
.calc__bar { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; margin: 22px auto; max-width: 420px; }
.calc__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--lime-dim), var(--lime)); width: 0; transition: width 1s ease; }
.calc__verdict { font-size: 18px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.calc__recs { text-align: left; max-width: 480px; margin: 22px auto 0; }
.calc__recs li { color: var(--muted); font-size: 15px; margin-bottom: 10px; padding-left: 26px; position: relative; }
.calc__recs li::before { content: "→"; position: absolute; left: 0; color: var(--lime); }

/* ===== Tools grid (ferramentas) ===== */
.grid--tools { grid-template-columns: repeat(2, 1fr); }
.tool-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.tool-card.soon { opacity: .68; }
.tool-card__ic { font-size: 24px; }
.tool-card h3 { color: var(--white); font-size: 18px; }
.tool-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.tool-card__tag { align-self: flex-start; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line); color: var(--faint); margin-top: 8px; }
.tool-card__tag.live { color: var(--lime); border-color: rgba(198,242,78,.35); }

/* Responsivo das páginas internas */
@media (max-width: 860px) {
  .grid--blog { grid-template-columns: 1fr; }
  .grid--tools { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MOVIMENTO, hover, micro-interações e animações
   ============================================================ */

/* Nav com sublinhado animado */
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--lime); border-radius: 2px; transition: width .22s ease; }
.nav a:hover::after { width: 100%; }

/* Eyebrow: estrela pulsa de leve */
.eyebrow::before { animation: twinkle 2.8s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.82); } }

/* Botão primário com brilho que varre no hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .55s ease; }
.btn--primary:hover::after { left: 140%; }

/* Pills reagem */
.pill { transition: border-color .2s, transform .2s, color .2s; }
.pill:hover { border-color: var(--lime); color: var(--white); transform: translateY(-2px); }
.pill .dot { animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(198,242,78,.5); } 50% { box-shadow: 0 0 0 5px rgba(198,242,78,0); } }

/* Cards de serviço: borda superior que acende + ícone reage */
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent); opacity: 0; transition: opacity .25s; z-index: 2; }
.card:hover::before { opacity: 1; }
.card__icon { transition: transform .3s ease, background .3s, border-color .3s; }
.card:hover .card__icon { transform: translateY(-3px) rotate(-7deg); background: rgba(198,242,78,.18); border-color: var(--lime); }

/* Passos reagem */
.step { transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.step:hover { transform: translateY(-4px); border-color: #333; background: var(--card-2); }
.step__num { transition: transform .3s ease; }
.step:hover .step__num { transform: scale(1.1) rotate(-5deg); }

/* Blog: capa dá zoom no hover */
.post-card__media { transition: transform .5s ease; }
.post-card:hover .post-card__media { transform: scale(1.05); }
.post-card__link { transition: letter-spacing .2s; }
.post-card:hover .post-card__link { letter-spacing: .3px; }

/* Timeline: ponto pulsa */
.tl-item__dot { animation: dotHalo 2.8s ease-in-out infinite; }
@keyframes dotHalo { 0%,100% { box-shadow: 0 0 0 4px rgba(198,242,78,.10); } 50% { box-shadow: 0 0 0 8px rgba(198,242,78,.03); } }

/* Depoimentos, tools e contato reagem */
.review { transition: transform .2s ease, border-color .2s ease; }
.review:hover { transform: translateY(-4px); border-color: #333; }
.tool-card { transition: transform .2s ease, border-color .2s ease; }
.tool-card:hover { transform: translateY(-4px); border-color: rgba(198,242,78,.4); }
.contact-info__item { transition: transform .2s ease, border-color .2s ease; }
.contact-info__item:hover { transform: translateX(4px); border-color: rgba(198,242,78,.4); }

/* Hero media flutua de leve */
.hero__media { animation: floaty 6.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Cascata do reveal dentro das grades */
.grid > .reveal:nth-child(2) { transition-delay: .07s; }
.grid > .reveal:nth-child(3) { transition-delay: .14s; }
.grid > .reveal:nth-child(4) { transition-delay: .21s; }
.grid > .reveal:nth-child(5) { transition-delay: .28s; }

/* ============================================================
   WIDGET DE CHAT, WhatsApp (robozinho → WhatsApp real)
   ============================================================ */
.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 80; font-family: var(--body); }

.wa-launcher { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; cursor: pointer; border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.45); animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .2s ease; }
.wa-launcher:hover { transform: scale(1.07); }
.wa-launcher svg { width: 32px; height: 32px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 13px rgba(37,211,102,0); } }
.wa-badge { position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; border-radius: 50%;
  background: #FF3B30; color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center;
  border: 2px solid var(--bg); }

.wa-panel { position: absolute; right: 0; bottom: 74px; width: min(340px, calc(100vw - 40px));
  background: #0B141A; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border: 1px solid #223; transform-origin: bottom right;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.96);
  transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.wa-widget.open .wa-panel { opacity: 1; visibility: visible; transform: none; }
.wa-widget.open .wa-launcher { animation: none; }

.wa-header { background: #202C33; padding: 12px 14px; display: flex; align-items: center; gap: 11px; }
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lime); color: #0A0A0A;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 20px; }
.wa-hd-info { flex: 1; line-height: 1.25; }
.wa-hd-info b { color: #fff; font-size: 15px; display: block; }
.wa-hd-info span { color: #8FA3AD; font-size: 12px; display: flex; align-items: center; gap: 5px; }
.wa-hd-info span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #25D366; }
.wa-close { background: none; border: none; color: #8FA3AD; font-size: 22px; cursor: pointer; padding: 4px; line-height: 1; }
.wa-close:hover { color: #fff; }

.wa-body { height: 320px; overflow-y: auto; padding: 18px 14px; display: flex; flex-direction: column; gap: 8px;
  background-color: #0B141A;
  background-image: radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px); background-size: 22px 22px; }
.wa-msg { max-width: 82%; padding: 9px 12px; border-radius: 12px; font-size: 14px; line-height: 1.45; animation: waIn .25s ease; }
.wa-msg.in { background: #202C33; color: #E9EDEF; align-self: flex-start; border-top-left-radius: 4px; }
.wa-msg.out { background: #005C4B; color: #E9EDEF; align-self: flex-end; border-top-right-radius: 4px; }
@keyframes waIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wa-typing { align-self: flex-start; background: #202C33; padding: 12px 14px; border-radius: 12px; border-top-left-radius: 4px; display: inline-flex; gap: 4px; }
.wa-typing i { width: 7px; height: 7px; border-radius: 50%; background: #8FA3AD; display: block; animation: waDot 1.2s infinite; }
.wa-typing i:nth-child(2) { animation-delay: .2s; } .wa-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes waDot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.wa-foot { padding: 10px 12px; background: #0B141A; border-top: 1px solid #1c2a33; }
.wa-quick { display: flex; flex-wrap: wrap; gap: 8px; }
.wa-quick button { background: transparent; border: 1px solid #2A5C50; color: #25D366; font-size: 13px;
  padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: all .15s; font-family: inherit; }
.wa-quick button:hover { background: #14251f; }
.wa-inputbar { display: flex; gap: 8px; align-items: center; }
.wa-inputbar input { flex: 1; background: #202C33; border: none; border-radius: 999px; padding: 11px 15px;
  color: #fff; font-size: 14px; font-family: inherit; }
.wa-inputbar input:focus { outline: 1px solid #25D366; }
.wa-inputbar button { background: #25D366; border: none; width: 40px; height: 40px; border-radius: 50%;
  color: #fff; cursor: pointer; font-size: 18px; flex: none; display: grid; place-items: center; }
.wa-cta { display: block; width: 100%; text-align: center; background: #25D366; color: #fff; font-weight: 700;
  padding: 12px; border-radius: 12px; font-size: 15px; text-decoration: none; transition: filter .15s; }
.wa-cta:hover { filter: brightness(1.08); }

@media (prefers-reduced-motion: reduce) {
  .wa-launcher, .pill .dot, .tl-item__dot, .eyebrow::before, .hero__media { animation: none !important; }
}
@media (max-width: 560px) { .wa-panel { bottom: 72px; } }

/* ============================================================
   PROFUNDIDADE / TEXTURA, deixa o site menos chapado
   ============================================================ */

/* Grão sutil por cima de tudo (quebra o "flat" das áreas escuras) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .04;
  mix-blend-mode: soft-light;
  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.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Aura verde bem sutil no topo das seções alternadas */
.section--alt { position: relative; }
.section--alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(70% 42% at 50% 0%, rgba(198,242,78,.055), transparent 62%);
}
.section--alt > .wrap { position: relative; z-index: 1; }

/* Cards e pilares com mais volume (sombra + realce interno + brilho no hover) */
.card, .pillar, .stat, .price-card, .story {
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 24px 50px -34px rgba(0,0,0,.9);
}
.card:hover, .pillar:hover {
  box-shadow: 0 0 0 1px rgba(198,242,78,.16), 0 34px 60px -30px rgba(0,0,0,.95);
}

/* Números das estatísticas com mais presença */
.stat { background: linear-gradient(180deg, #181818, #121212); }
.stat__num { color: #eaf7bd; background: linear-gradient(180deg, #fff, #cfe97a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Divisor luminoso fino entre grandes blocos */
.strip { position: relative; }
.strip::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(198,242,78,.35), transparent);
}

/* Imagens de mídia com leve zoom vivo no hover */
.media { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.media img { transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.card:hover .card__media .media img,
.problem-grid__media:hover img,
.media--wide:hover img { transform: scale(1.04); }

/* ============================================================
   REESTRUTURAÇÃO 2026, Máquina de Clientes, cases e barra de prova
   ============================================================ */

/* Barra de prova compacta (logo abaixo do hero) */
.stats--bar { margin-top: 0; }

/* Seção destaque do pacote Máquina de Clientes */
.mc__box { position: relative; border: 1px solid rgba(198, 242, 78, .45); border-radius: 24px; padding: clamp(36px, 6vw, 72px) var(--gutter); overflow: hidden; background: linear-gradient(180deg, #131507, #0b0b0b); }
.mc__glow { position: absolute; inset: 0; background: radial-gradient(90% 70% at 82% 0%, var(--lime-glow) 0%, transparent 60%); pointer-events: none; }
.mc__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: center; position: relative; z-index: 1; }
.mc__badge { display: inline-block; background: var(--lime); color: #0a0a0a; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.mc__grid h2.display { margin-bottom: 18px; line-height: 1.08; }
.mc__grid .lead { margin-bottom: 4px; }
.mc__grid .check-list { margin-top: 26px; gap: 14px; }
.mc__grid .hero__actions { margin-top: 32px; }
.mc__side { display: flex; flex-direction: column; gap: 16px; }
.mc__side .pillar { padding: 22px 24px; }
.mc__side .pillar .pillar__ic { margin-bottom: 14px; }
@media (max-width: 900px) { .mc__grid { grid-template-columns: 1fr; } .mc__grid h2.display { margin-bottom: 14px; } }

/* Cards de case / projeto (com espaço pra mockup) */
.grid--cases { grid-template-columns: repeat(4, 1fr); }
.case-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.case-card:hover { transform: translateY(-4px); border-color: rgba(198, 242, 78, .4); }
.case-card__media { aspect-ratio: 16 / 11; display: grid; place-items: center; background: #121212; border-bottom: 1px solid var(--line); color: var(--faint); font-size: 12.5px; letter-spacing: 1px; text-align: center; padding: 10px; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.case-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.case-card__body h3 { font-size: 15.5px; color: var(--white); }
.case-card__result { color: var(--lime); font-weight: 600; font-size: 14px; }
.case-card--placeholder .case-card__media { border-style: dashed; }
@media (max-width: 1000px) { .grid--cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--cases { grid-template-columns: 1fr; } }

/* Rodapé com contatos diretos */
.footer__contacts { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 14px; }
.footer__contacts a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.footer__contacts a:hover { color: var(--lime); }

/* Tabela de planos/formatos (sem preço numérico, CTA pro WhatsApp) */
.grid--plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan { position: relative; background: linear-gradient(180deg, #121212, #0b0b0b); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.plan:hover { transform: translateY(-4px); border-color: #333; }
.plan--featured { border-color: rgba(198, 242, 78, .55); background: linear-gradient(180deg, #131507, #0b0b0b); }
.plan--featured:hover { border-color: var(--lime); }
.plan__tag { position: absolute; top: 16px; right: 16px; background: var(--lime); color: #0a0a0a; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.plan__name { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--white); }
.plan__from { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); }
.plan__price { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--lime); line-height: 1.1; }
.plan__desc { color: var(--muted); font-size: 14.5px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 6px 0 10px; }
.plan ul li { font-size: 14px; color: var(--text); padding-left: 22px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.plan .btn { margin-top: auto; justify-content: center; }
@media (max-width: 900px) { .grid--plans { grid-template-columns: 1fr; } }

/* Campo honeypot anti-spam do Netlify Forms, invisível pra humanos */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   LANDING /diagnostico, página de captura exclusiva pra tráfego pago
   v2: desktop + mobile, form de diagnóstico completo
   ============================================================ */

/* Header fixo enxuto */
.lp-header { position: sticky; top: 0; z-index: 60; background: rgba(10,10,10,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding-block: 14px; }
.lp-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-header .btn { white-space: nowrap; }

/* Hero split: headline à esquerda, card de valor à direita */
.lp-hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 72px); }
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px circle at 82% 8%, rgba(198,242,78,.13), transparent 62%),
    radial-gradient(560px circle at 8% 90%, rgba(198,242,78,.06), transparent 60%); }
.lp-hero .wrap { position: relative; z-index: 1; }
.lp-hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.lp-hero h1 { margin: 18px 0 16px; }
.lp-hero .lead { max-width: 560px; margin-bottom: 28px; }
.lp-hero__cta .btn--lg { min-width: 300px; justify-content: center; }
.lp-hero__sub { margin-top: 12px; font-size: 13.5px; color: var(--faint); }

/* Barra de prova */
.lp-trust { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(20px, 4vw, 44px); margin-top: 38px; justify-content: start; }
.lp-trust__num { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--lime); line-height: 1; }
.lp-trust__label { font-size: 12.5px; color: var(--muted); margin-top: 7px; max-width: 130px; }

/* Card "você sai da call com" */
.lp-deliver { position: relative; background: linear-gradient(180deg, #131507, #0c0c0c); border: 1px solid rgba(198,242,78,.4); border-radius: 20px; padding: clamp(26px, 3vw, 36px); overflow: hidden; }
.lp-deliver::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 85% 0%, var(--lime-glow) 0%, transparent 55%); pointer-events: none; }
.lp-deliver > * { position: relative; }
.lp-deliver__tag { display: inline-block; background: var(--lime); color: #0a0a0a; font-weight: 700; font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.lp-deliver h3 { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--white); margin-bottom: 16px; }
.lp-deliver ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-deliver li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.lp-deliver li::before { content: "✓"; color: var(--lime); font-weight: 700; flex: none; }

/* Seções */
.lp-section { padding-block: clamp(48px, 7vw, 84px); }
.lp-section--alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.lp-section .section-head { max-width: 640px; }
.lp-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }

/* Cards de dor */
.lp-pain__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .2s ease, border-color .2s ease; }
.lp-pain__item:hover { transform: translateY(-4px); border-color: #333; }
.lp-pain__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(198,242,78,.10); border: 1px solid rgba(198,242,78,.25); color: var(--lime); font-size: 19px; margin-bottom: 16px; }
.lp-pain__item h3 { font-size: 16.5px; color: var(--white); margin-bottom: 8px; }
.lp-pain__item p { font-size: 14px; color: var(--muted); }

/* Passos */
.lp-steps__item { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.lp-steps__num { width: 34px; height: 34px; border-radius: 10px; background: var(--lime); color: #0a0a0a; font-family: var(--display); font-weight: 700; font-size: 15px; display: grid; place-items: center; margin-bottom: 16px; }
.lp-steps__item h3 { font-size: 16.5px; color: var(--white); margin-bottom: 6px; }
.lp-steps__item p { font-size: 14px; color: var(--muted); }

/* Formulário de diagnóstico */
.lp-form-shell { max-width: 780px; margin-inline: auto; }
.lp-form-badge { display: inline-block; background: rgba(198,242,78,.10); border: 1px solid rgba(198,242,78,.3); color: var(--lime); font-size: 12px; font-weight: 600; letter-spacing: .4px; padding: 7px 15px; border-radius: 999px; margin-bottom: 16px; }
.lp-form-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 40px); margin-top: 30px; }
.lp-fs { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(18px, 3vw, 26px); }
.lp-fs + .lp-fs { margin-top: 18px; }
.lp-fs__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.lp-fs__num { flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(198,242,78,.12); border: 1px solid rgba(198,242,78,.35); color: var(--lime); font-family: var(--display); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.lp-fs__head h3 { font-size: 16px; color: var(--white); }
.lp-fs__head span { display: block; font-size: 12.5px; color: var(--faint); font-weight: 400; margin-top: 2px; }

/* Opções marcáveis com checkbox visível */
.check-opt-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-opt-list--1col { grid-template-columns: 1fr; }
.check-opt { position: relative; display: block; }
.check-opt input { position: absolute; opacity: 0; }
.check-opt__card { display: flex; gap: 12px; align-items: flex-start; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: all .15s; background: #131313; }
.check-opt__card:hover { border-color: #3a3a3a; }
.check-opt__box { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 6px; border: 2px solid #4a4a4a; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: transparent; transition: all .15s; background: #0e0e0e; }
.check-opt input:checked + .check-opt__card { border-color: var(--lime); background: rgba(198,242,78,.07); }
.check-opt input:checked + .check-opt__card .check-opt__box { background: var(--lime); border-color: var(--lime); color: #0a0a0a; }
.check-opt input:focus-visible + .check-opt__card { box-shadow: 0 0 0 3px rgba(198,242,78,.25); }
.check-opt__txt b { display: block; font-size: 14px; color: var(--white); line-height: 1.35; }
.check-opt input:checked + .check-opt__card .check-opt__txt b { color: var(--lime); }
.check-opt__txt span { font-size: 12.5px; color: var(--muted); }

/* Radios em pills (já anuncia?) */
.lp-radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-radio-row label { position: relative; flex: 1; min-width: 130px; }
.lp-radio-row input { position: absolute; opacity: 0; }
.lp-radio-row span { display: block; text-align: center; padding: 12px 10px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; color: var(--muted); font-size: 13.5px; transition: all .15s; background: #131313; }
.lp-radio-row input:checked + span { border-color: var(--lime); color: var(--lime); background: rgba(198,242,78,.07); font-weight: 600; }
.lp-radio-row input:focus-visible + span { box-shadow: 0 0 0 3px rgba(198,242,78,.25); }

.lp-form-card .btn--lg { width: 100%; justify-content: center; margin-top: 22px; }

/* Depoimento */
.lp-quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); margin-top: 28px; max-width: 720px; }
.lp-quote-card blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.4; color: var(--white); }
.lp-quote-card cite { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-style: normal; font-size: 13.5px; color: var(--muted); }
.lp-quote-card .review__avatar { width: 38px; height: 38px; }

/* CTA final + footer */
.lp-final { text-align: center; }
.lp-final .btn--lg { min-width: 300px; justify-content: center; }
.lp-footer { text-align: center; padding-block: 34px; border-top: 1px solid var(--line); }
.lp-footer p { font-size: 13px; color: var(--faint); line-height: 1.7; }

/* Responsivo da LP */
@media (max-width: 960px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero .lead { max-width: none; }
  .lp-grid3 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .check-opt-list { grid-template-columns: 1fr; }
  .lp-hero__cta .btn--lg, .lp-final .btn--lg { width: 100%; min-width: 0; }
  .lp-trust { grid-template-columns: repeat(3, 1fr); justify-content: stretch; }
  .lp-header .btn { padding: 10px 14px; font-size: 13.5px; }
}

/* LP /diagnostico v3, uma dobra: hero + form; passo 2 = agenda embutida */
.lp-hero--fold { padding-block: clamp(32px, 5vw, 64px) clamp(40px, 6vw, 72px); }
.lp-hero--fold .lp-hero__grid { grid-template-columns: 1fr 1fr; align-items: start; }
.lp-mini-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.lp-mini-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.lp-mini-list li::before { content: "✓"; color: var(--lime); font-weight: 700; flex: none; }
.lp-form-card--fold { margin-top: 0; background: linear-gradient(180deg, #141414, #0e0e0e); border-color: rgba(198,242,78,.35); }
.lp-form-card--fold h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.lp-form-card--fold .lp-form-hint { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
/* Passo 2: agenda */
.lp-sched { display: none; }
.lp-sched.show { display: block; }
.lp-sched__head { text-align: center; max-width: 560px; margin: 0 auto 8px; }
.lp-sched__ok { display: inline-flex; align-items: center; gap: 8px; background: rgba(198,242,78,.10); border: 1px solid rgba(198,242,78,.35); color: var(--lime); font-size: 13px; font-weight: 600; padding: 7px 15px; border-radius: 999px; margin-bottom: 14px; }
.calendly-inline-widget { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #0e0e0e; }
@media (max-width: 960px) { .lp-hero--fold .lp-hero__grid { grid-template-columns: 1fr; gap: 28px; } }

/* LP, prova social discreta (empresas atendidas + ferramentas) */
.lp-proof { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.lp-proof__label { font-size: 13px; color: var(--faint); margin-bottom: 12px; }
.lp-proof__label b { color: var(--muted); font-weight: 600; }
.lp-proof__logos { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-proof__logos span { font-size: 12.5px; color: var(--faint); border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px; cursor: default; user-select: none; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.lp-proof__logos span:hover { color: var(--lime-dim); border-color: rgba(198, 242, 78, .25); background: rgba(198, 242, 78, .05); }

/* LP, campos do formulário com contraste alto (público não-tech):
   campo claramente visível, label forte, foco impossível de errar */
.lp-form-card .field label { font-size: 15px; color: var(--white); font-weight: 600; }
.lp-form-card .field input,
.lp-form-card .field select,
.lp-form-card .field textarea {
  background: #242424;
  border: 1.5px solid #4a4a4a;
  padding: 15px 16px;
  font-size: 16px; /* 16px também evita o zoom automático do iPhone */
  border-radius: 12px;
}
.lp-form-card .field input:hover,
.lp-form-card .field select:hover,
.lp-form-card .field textarea:hover { border-color: #6a6a6a; }
.lp-form-card .field input:focus,
.lp-form-card .field select:focus,
.lp-form-card .field textarea:focus {
  background: #2a2a2a;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(198, 242, 78, .18);
}
.lp-form-card .field input::placeholder,
.lp-form-card .field textarea::placeholder { color: #909090; }
.lp-form-card .field select { background-color: #242424; }
.lp-form-card .field select option { background: #242424; }
.lp-form-card .btn--lg { padding-block: 17px; font-size: 16.5px; }
