/* ============================================================
   LFTEAM — folha de estilo
   Escrita mobile-first: o padrão é celular, o desktop vem depois
   nos blocos @media (min-width: ...).
   ============================================================ */

:root {
  /* cores da marca */
  --bg: #0A0A0A;
  --surface: #121212;
  --surface-2: #191919;
  --border: #262626;
  --border-lit: #333;
  --ink: #F4F4F2;
  --ink-muted: #A5A5A0;
  --ink-faint: #6C6C67;
  --accent: #14F028;
  --accent-hi: #46FF57;
  --accent-ink: #06120A;
  --accent-soft: rgba(20, 240, 40, .09);
  --accent-line: rgba(20, 240, 40, .28);
  --bad: #E5484D;

  /* escala de espaçamento */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 12px 34px -10px rgba(0,0,0,.6);
  --shadow-lit: 0 16px 44px -12px rgba(20,240,40,.22);

  --ease: cubic-bezier(.22,.61,.36,1);

  /* separação das seções */
  --page-bg: #050505;      /* fundo geral, mais escuro que os painéis */
  --surface-alt: #101010;  /* tom alternado dos painéis */
  --panel-radius: 26px;
  --panel-gap: 10px;
}

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

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p { margin: 0; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2 {
  margin: 0;
  font-family: Cambria, "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--accent); }
h3, h4 { margin: 0; font-weight: 800; text-wrap: balance; }

/* acessibilidade: link que só aparece ao navegar por teclado */
.skip-link {
  position: absolute; left: -9999px; top: var(--s-3); z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: var(--s-3) var(--s-5); border-radius: 8px; font-weight: 700;
}
.skip-link:focus { left: var(--s-3); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--s-5); }

.eyebrow {
  display: block;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 800;
}

/* ---------- separação das seções ----------
   Três camadas combinadas:
   1) o fundo geral é mais escuro que as seções (painel flutuante)
   2) as seções alternam de tom, criando ritmo
   3) o raio da marca marca o corte no vão entre elas
   ------------------------------------------------------------ */
.section {
  position: relative;
  padding: var(--s-8) 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--panel-radius);
  margin: 0 var(--panel-gap);
  overflow: hidden; /* recorta o carrossel nos cantos arredondados */
}
.section:nth-of-type(even) { background: var(--surface-alt); }

/* raio da logo no vão entre os painéis */
.divisor {
  display: flex; align-items: center; justify-content: center;
  height: var(--s-7); position: relative;
}
.divisor::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(230px, 52vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}
.divisor-raio {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; color: var(--accent);
}
.divisor-raio svg { width: 15px; height: 15px; filter: drop-shadow(0 0 7px rgba(20,240,40,.5)); }
.section-head { max-width: 60ch; margin: 0 0 var(--s-7); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(26px, 7vw, 40px); margin-top: var(--s-3); }
.section-head p { color: var(--ink-muted); font-size: 15.5px; margin-top: var(--s-3); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: inherit; font-weight: 800; font-size: 15px; line-height: 1;
  padding: 17px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 26px -8px rgba(20,240,40,.5); }
.btn-outline { background: transparent; border-color: var(--border-lit); color: var(--ink); }
.btn-lg { padding: 19px 34px; font-size: 16px; }
@media (hover: hover) {
  .btn-primary:hover { background: var(--accent-hi); transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(20,240,40,.6); }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
}
.btn:active { transform: translateY(0) scale(.985); }

/* ---------- navegação ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); padding: var(--s-3) var(--s-5);
  background: rgba(10,10,10,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: transform .3s var(--ease);
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav .logo img { height: 40px; width: 40px; }
.nav-links { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--border-lit); border-radius: 10px; cursor: pointer;
}
.nav-toggle .hbar {
  width: 17px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open .hbar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .hbar:nth-child(2) { opacity: 0; }
.nav-toggle.open .hbar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  display: none; flex-direction: column;
  position: sticky; top: 61px; z-index: 39;
  padding: var(--s-2) var(--s-5) var(--s-5);
  background: rgba(10,10,10,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  padding: var(--s-4) 2px; font-size: 15px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted);
  border-top: 1px solid var(--border);
}
.nav-mobile-panel a:first-child { border-top: none; }
.nav-mobile-panel .painel-cta {
  margin-top: var(--s-4); border-top: none; text-align: center;
  background: var(--accent); color: var(--accent-ink); border-radius: 100px;
  padding: 16px; text-transform: none; letter-spacing: 0; font-size: 15px;
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: var(--s-8) 0 var(--s-9);
  min-height: 88svh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('imagens/hero-mobile.webp');
  /* ponytail: no celular a foto cabe inteira no frame, então `cover` não corta
     nada e o teto aparece todo. O zoom de 135% cria a sobra vertical que o
     background-position precisa pra descer o enquadramento. */
  background-size: auto 135%;
  background-position: center 88%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(10,10,10,.22), rgba(10,10,10,.72) 62%, rgba(10,10,10,.93) 100%),
    linear-gradient(180deg, rgba(10,10,10,.38) 0%, transparent 30%);
}
/* O zoom acima é só pra tela de celular: a partir de 600px o frame já fica
   largo o bastante pro `cover` cortar o teto sozinho, e manter o zoom deixaria
   a imagem estreita demais pra cobrir a largura (tarja preta nas laterais). */
@media (min-width: 600px) {
  .hero-bg { background-size: cover; background-position: center 42%; }
}

/* emenda suave entre o hero e a próxima seção */
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 140px; z-index: 2;
  background: linear-gradient(180deg, transparent, var(--page-bg));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; max-width: 720px; }
.hero-logo { width: clamp(110px, 30vw, 150px); height: auto; margin: 0 auto var(--s-5); }
.hero h1 { font-size: clamp(30px, 8.5vw, 58px); margin: var(--s-3) 0 var(--s-4); }
.hero .sub { font-size: 16px; color: var(--ink-muted); max-width: 46ch; margin: 0 auto var(--s-6); }
.hero-ctas { display: flex; flex-direction: column; gap: var(--s-3); }
.hero-ctas .btn { width: 100%; }
.hero-proof { font-size: 13.5px; color: var(--ink-muted); margin-top: var(--s-4); }
.hero-stats {
  display: flex; justify-content: center; gap: var(--s-7);
  margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--border);
}
.hero-stat .n {
  font-family: Cambria, "Iowan Old Style", Georgia, serif;
  font-size: clamp(30px, 9vw, 44px); font-weight: 500; color: var(--accent); line-height: 1;
}
.hero-stat .l {
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: var(--s-2);
}

.hero-anim { opacity: 0; transform: translateY(18px); animation: rise .8s var(--ease) forwards; }
.hero-anim:nth-child(2) { animation-delay: .07s; }
.hero-anim:nth-child(3) { animation-delay: .14s; }
.hero-anim:nth-child(4) { animation-delay: .21s; }
.hero-anim:nth-child(5) { animation-delay: .28s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------- revelação no scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- carrossel contínuo ---------- */
.marquee {
  overflow: hidden; cursor: grab; touch-action: pan-y;
  padding: var(--s-5) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee.dragging { cursor: grabbing; }
.marquee-track { display: flex; gap: var(--s-4); width: max-content; will-change: transform; }

/* moldura das fotos que rolam */
.shot {
  margin: 0; flex: 0 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow);
  transform: scale(.9); opacity: .55;
  transition: transform .45s var(--ease), opacity .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
/* o cartão que passa pelo centro cresce e ganha destaque */
.shot.is-center {
  transform: scale(1); opacity: 1;
  border-color: var(--accent-line); box-shadow: var(--shadow-lit);
}

/* resultados: as fotos vêm quadradas do Instagram, mantidas 1:1 sem corte */
.shot img { display: block; width: clamp(240px, 70vw, 320px); aspect-ratio: 1/1; object-fit: cover; }

/* depoimentos: prints de conversa — altura fixa e largura livre,
   assim nenhuma palavra é cortada, qualquer que seja o formato */
.shot-nat img {
  width: auto; height: clamp(300px, 62vh, 420px);
  aspect-ratio: auto; object-fit: contain; background: #000;
}

.marquee-hint {
  text-align: center; font-size: 12px; color: var(--ink-faint);
  margin-top: var(--s-2);
}
.carousel-cta { text-align: center; margin-top: var(--s-6); }

/* ---------- qualificação ---------- */
.qual-single {
  background: linear-gradient(165deg, var(--accent-soft), rgba(20,240,40,.02));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-5); box-shadow: 0 24px 60px -22px rgba(20,240,40,.22);
  max-width: 720px; margin: 0 auto;
}
.qual-single h3 {
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s-5);
}
.qual-single ul { display: flex; flex-direction: column; gap: var(--s-4); }
.qual-single li { display: flex; align-items: flex-start; gap: var(--s-3); font-size: 15.5px; line-height: 1.45; }
.qual-badge {
  flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px;
  border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.qual-badge svg { width: 12px; height: 12px; }
.qual-cta { text-align: center; margin-top: var(--s-6); }
.qual-cta .btn { width: 100%; max-width: 340px; }

/* ---------- método ---------- */
.metodo-grid { display: flex; flex-direction: column; gap: var(--s-7); }

/* moldura de celular pro vídeo do app */
.metodo-video { display: flex; flex-direction: column; align-items: center; }
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 3/4;
  background: #000; border: 3px solid #1F1F1F; border-radius: 26px;
  box-shadow: 0 0 0 2px #0A0A0A, 0 30px 60px -20px rgba(0,0,0,.9), 0 0 70px -24px rgba(20,240,40,.4);
  overflow: hidden;
}
.phone-notch { display: none; }
.phone video { width: 100%; height: 100%; object-fit: cover; }
.phone-play {
  position: absolute; inset: 0; z-index: 2; margin: auto;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(20,240,40,.94); color: var(--accent-ink);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(20,240,40,.6);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.phone-play svg { width: 26px; height: 26px; margin-left: 3px; }
.phone.playing .phone-play { opacity: 0; pointer-events: none; transform: scale(.8); }
.phone-label {
  margin-top: var(--s-4); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); font-weight: 800;
}

.metodo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.mcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--s-5) var(--s-4);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease);
}
@media (hover: hover) {
  .mcard:hover { border-color: var(--accent-line); transform: translateY(-3px); background: var(--surface-2); }
}
.mcard-ico {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-line); margin-bottom: var(--s-3);
}
.mcard-ico svg { width: 19px; height: 19px; }
.mcard h3 { font-size: 14.5px; margin-bottom: var(--s-2); }
.mcard p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

/* ---------- planos ---------- */
.plans-grid { display: flex; flex-direction: column; gap: var(--s-5); }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s-6) var(--s-5);
}
.plan.featured {
  border-color: var(--accent); background: linear-gradient(170deg, var(--accent-soft), var(--surface) 55%);
  box-shadow: 0 26px 70px -26px rgba(20,240,40,.4);
}
.plan-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint);
}
.plan h3 {
  font-family: Cambria, "Iowan Old Style", Georgia, serif;
  font-weight: 500; font-size: 30px; margin: var(--s-2) 0 var(--s-3);
}
.plan.featured h3 { color: var(--accent); }
.plan-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

.plan-list {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin: var(--s-5) 0; padding: var(--s-5) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.plan-list li { position: relative; padding-left: 27px; font-size: 14px; line-height: 1.45; }
.plan-list li::before {
  position: absolute; left: 0; top: 0; font-weight: 800; font-size: 13px;
  width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.plan-list li.yes::before { content: "✓"; background: var(--accent-soft); color: var(--accent); }
.plan-list li.no::before { content: "✕"; color: var(--bad); }
.plan-list li.no { color: var(--ink-faint); }

.plan-pricing { margin-top: auto; }
.plan-only { font-size: 12.5px; color: var(--ink-faint); margin-bottom: var(--s-3); }
.price { display: flex; align-items: flex-start; gap: 4px; justify-content: center; }
.price-cur { font-size: 17px; color: var(--ink-muted); margin-top: 8px; }
.price-val {
  font-family: Cambria, "Iowan Old Style", Georgia, serif;
  font-size: 52px; font-weight: 500; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-parcel { text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: var(--s-2); }

.durations { display: flex; flex-direction: column; gap: var(--s-2); }
.durations li {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: var(--s-3) var(--s-4);
}
.durations span { font-size: 13px; color: var(--ink-muted); }
.durations b {
  display: flex; flex-direction: column; align-items: flex-end;
  font-size: 16px; font-variant-numeric: tabular-nums; line-height: 1.2;
}
.durations small { font-size: 11px; font-weight: 400; color: var(--ink-faint); margin-top: 2px; }

.plan-btn { width: 100%; margin-top: var(--s-5); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5) var(--s-1); font-size: 15.5px; font-weight: 700;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; color: var(--accent);
  font-size: 22px; font-weight: 400; line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 var(--s-1) var(--s-5); color: var(--ink-muted); font-size: 14.5px; max-width: 62ch; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  padding: var(--s-8) 0;
  background:
    radial-gradient(90% 60% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg);
  border: 1px solid var(--accent-line);
  border-radius: var(--panel-radius);
  margin: 0 var(--panel-gap);
  overflow: hidden;
}
.cta-grid { display: flex; flex-direction: column; gap: var(--s-6); align-items: center; text-align: center; }
.cta-photo {
  position: relative; width: min(320px, 80vw);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.cta-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.94) contrast(1.05); }
.cta-photo-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(10,10,10,.72) 100%),
    linear-gradient(0deg, transparent 88%, var(--accent-soft) 100%);
}
.cta-text h2 { font-size: clamp(26px, 7.5vw, 40px); margin: var(--s-3) 0 var(--s-4); }
.cta-text p { color: var(--ink-muted); font-size: 15.5px; max-width: 46ch; margin: 0 auto var(--s-6); }
.cta-text .btn { width: 100%; max-width: 340px; }
.cta-note { font-size: 13px; color: var(--ink-faint); margin-top: var(--s-4) !important; }

/* ---------- rodapé ---------- */
.foot { padding: var(--s-8) 0 var(--s-6); background: var(--page-bg); }
.foot-grid { display: flex; flex-direction: column; gap: var(--s-6); margin-bottom: var(--s-6); }
.foot-logo { height: 44px; width: 44px; }
.foot-desc { color: var(--ink-faint); font-size: 13px; max-width: 34ch; margin-top: var(--s-3); }
.foot-links { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-5); font-size: 14px; color: var(--ink-muted); }
.foot-bottom {
  display: flex; flex-direction: column; gap: var(--s-2);
  border-top: 1px solid var(--border); padding-top: var(--s-5);
  font-size: 12.5px; color: var(--ink-faint);
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(20,240,40,.55);
  transition: transform .2s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:active { transform: scale(.92); }

/* ============================================================
   TABLET  >= 700px
   ============================================================ */
@media (min-width: 700px) {
  .section { padding: var(--s-9) 0; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { width: auto; }
  .hero-stats { gap: var(--s-9); }
  .qual-single { padding: var(--s-7); }
  .qual-single li { font-size: 16.5px; }
  .metodo-cards { gap: var(--s-4); }
  .mcard { padding: var(--s-5); }
  .mcard h3 { font-size: 15.5px; }
  .mcard p { font-size: 13.5px; }
  .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); align-items: stretch; }
  .plan { padding: var(--s-6) var(--s-5); }
  .plan h3 { font-size: 26px; }
  .cta-grid { flex-direction: row; text-align: left; gap: var(--s-7); align-items: center; }
  .cta-photo { flex: 0 0 300px; }
  .cta-text p { margin-left: 0; }
  .cta-text .btn { width: auto; }
  .foot-grid { flex-direction: row; justify-content: space-between; }
  .foot-bottom { flex-direction: row; justify-content: space-between; }
  .shot { width: 300px; }
}

/* ============================================================
   DESKTOP  >= 940px
   ============================================================ */
@media (min-width: 940px) {
  .nav { padding: var(--s-4) var(--s-6); }
  .nav-links {
    display: flex; gap: var(--s-5);
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--ink-muted);
  }
  .nav-links a { position: relative; padding-bottom: 4px; transition: color .18s var(--ease); }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1.5px; background: var(--accent); transition: right .28s var(--ease);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { right: 0; }
  .nav-toggle { display: none; }
  .nav-mobile-panel { display: none !important; }

  :root { --panel-gap: 20px; --panel-radius: 32px; }
  .hero-bg {
    background-image: url('imagens/hero-desktop.webp');
    background-position: center 22%;
  }
  .metodo-grid { display: grid; grid-template-columns: minmax(280px, .85fr) 1.15fr; gap: var(--s-8); align-items: center; }
  .shot { width: 330px; }
  .marquee { padding: var(--s-6) 0; }

  .wa-float { right: 24px; bottom: 24px; }
}

/* ============================================================
   Respeita quem pediu menos animação no sistema
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-anim { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .shot { transform: none !important; opacity: 1 !important; }
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .marquee-track { width: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
