/* =========================================================
   Colégio Madre Tereza — Landing de Matrículas
   League Spartan (display/texto) + Lumios Marker (acentos)
   Identidade: vermelho #f53d43 · preto · branco
   ========================================================= */

@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-ExtraBold.ttf") format("truetype"); font-weight: 800; font-display: swap; }
@font-face { font-family: "League Spartan"; src: url("../fonts/LeagueSpartan-Black.ttf") format("truetype"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Lumios Marker"; src: url("../fonts/Lumios Marker.otf") format("opentype"); font-weight: 400; font-display: swap; }

:root {
  --red: #f53d43;
  --red-ink: #d0262c;
  --ink: #17130f;
  --ink-soft: #4b453e;
  --paper: #ffffff;
  --paper-2: #f6f3f0;
  --line: #e7e1da;
  --black: #100d0b;

  --font: "League Spartan", "Arial Narrow", system-ui, sans-serif;
  --hand: "Lumios Marker", "League Spartan", cursive;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(3.5rem, 7.5vw, 6.25rem);

  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  --step-2: clamp(1.5rem, 1.25rem + 1.2vw, 2.3rem);
  --step-3: clamp(1.9rem, 1.45rem + 2.1vw, 3.1rem);
  --step-4: clamp(2.5rem, 1.7rem + 3.9vw, 4.6rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 900; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.01em; }
p { margin: 0 0 1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.hand {
  font-family: var(--hand);
  text-transform: none;
  letter-spacing: 0;
  color: var(--red);
  font-weight: 400;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
:target, [id] { scroll-margin-top: 92px; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--black); color: #f3efe9; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark + .section--dark { border-top: 1px solid rgba(255,255,255,.1); }
.section--dark .kicker { color: var(--red); }
.section--red { background: var(--red); color: #fff; }
.section--red h2 { color: #fff; }

.kicker {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-ink);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section--red .kicker, .section--red .kicker::before { color: #fff; background-color: #fff; }
.section--red .kicker::before { background: #fff; }

.lead { font-size: var(--step-1); font-weight: 500; color: var(--ink); max-width: 34ch; }
.section--dark .lead { color: #f3efe9; }
.measure { max-width: 60ch; color: var(--ink-soft); }
.section--dark .measure { color: #cfc8bf; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.9rem;
  background: var(--bg);
  color: var(--fg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: var(--step--1);
  text-decoration: none;
  border: 2px solid var(--bg);
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { background: var(--red-ink); border-color: var(--red-ink); transform: translateY(-2px); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--ghost { --fg: #fff; }
.section--dark .btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 1.2rem 2.4rem; font-size: var(--step-0); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line); border-color: var(--line); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem var(--gutter);
  max-width: var(--wrap);
  margin-inline: auto;
}
.brand img { height: clamp(48px, 6vw, 64px); width: auto; }
.brand { display: inline-flex; text-decoration: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  padding: .3rem 0;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right .2s ease;
}
.nav a:hover::after { right: 0; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__cta { white-space: nowrap; }
.nav .nav__cta.btn {
  padding: .72rem 1.4rem;
  font-size: var(--step--1);
  letter-spacing: .05em;
  align-self: center;
  line-height: 1;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 2px;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] .i-open { display: none; }
.nav-toggle .i-close { display: none; }
.nav-toggle[aria-expanded="true"] .i-close { display: block; }

@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(0,0,0,.25);
    padding: .25rem var(--gutter) 1.5rem;
    transform: translateY(-125%);
    transition: transform .28s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav .nav__cta.btn { margin-top: 1.1rem; width: 100%; padding: 1.05rem 1.9rem; font-size: var(--step--1); }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-ink);
  margin-bottom: 1.4rem;
}
.hero__badge .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(245,61,67,.5);
  animation: pulse 2.6s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(245,61,67,0); } 100% { box-shadow: 0 0 0 0 rgba(245,61,67,0); } }
.hero h1 { margin-bottom: .4em; }
.hero h1 .accent { color: var(--red); }
.hero__sub { font-size: var(--step-1); font-weight: 500; color: var(--ink-soft); max-width: 40ch; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(245,61,67,.16));
  mix-blend-mode: multiply;
  border-radius: 2px;
}
.hero__note {
  position: absolute;
  left: -1.5rem; bottom: 1.5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--hand);
  font-size: 1.25rem;
  padding: .5rem 1rem;
  transform: rotate(-3deg);
}
.hero__tiger {
  position: absolute;
  right: -6%; top: 50%;
  transform: translateY(-50%);
  width: min(46vw, 620px);
  opacity: .05;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 860px) {
  .hero { padding-top: 1.25rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__media { order: -1; max-width: 440px; margin-inline: auto; }
  .hero__note { left: auto; right: -.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
}

/* ---------- tigre de fundo (seções escuras) ---------- */
.has-tiger { overflow: hidden; }
.section__tiger {
  position: absolute;
  left: -7%; top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 640px);
  opacity: .055;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.has-tiger > .wrap { position: relative; z-index: 1; }

/* ---------- slot de foto vazio (placeholder editorial) ---------- */
.photo-slot {
  width: 100%;
  background:
    repeating-linear-gradient(-45deg, rgba(0,0,0,.03) 0 12px, transparent 12px 24px),
    var(--paper-2);
  border: 1px solid var(--line);
}
.section--dark .photo-slot {
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
    rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.14);
}

/* ---------- link discreto dentro de feature ---------- */
.feature__link { margin-top: 1.6rem; }
.feature__link a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: var(--step--1);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.section--dark .feature__link a { color: #fff; }

/* ---------- slots de vídeo (depoimentos) ---------- */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 1.75rem); }
.video-slot {
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255,255,255,.02);
}
.video-slot__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  flex: none;
}
.video-slot__play::before {
  content: "";
  position: absolute; left: 54%; top: 50%;
  transform: translate(-50%,-50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.video-slot figcaption {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #cfc8bf;
}
@media (max-width: 760px){ .videos { grid-template-columns: 1fr; } .video-slot { aspect-ratio: 16/10; } }

/* ---------- credibility bar ---------- */
.cred { background: var(--black); color: #fff; }
.cred__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--wrap);
  margin-inline: auto;
}
.cred__item {
  padding: clamp(1.3rem, 3vw, 1.9rem) clamp(1rem, 2.4vw, 1.75rem);
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cred__item:last-child { border-right: 0; }
.cred__item b {
  font-size: var(--step-0);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.12;
  color: #fff;
}
.cred__item span { font-size: var(--step--1); color: #a49b90; text-transform: uppercase; letter-spacing: .12em; line-height: 1.3; }
.cred__num { color: var(--red); font-weight: 900; }
@media (max-width: 860px) {
  .cred__list { grid-template-columns: repeat(2, 1fr); }
  .cred__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
  .cred__item:nth-child(even) { border-right: 0; }
  .cred__item { border-bottom: 1px solid rgba(255,255,255,.14); }
  .cred__item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .cred__list { grid-template-columns: 1fr; }
  .cred__item, .cred__item:nth-child(odd) { border-right: 0; }
}

/* ---------- generic section head ---------- */
.head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.head .kicker { margin-bottom: 1.4rem; }
.head h2 { margin: 0; max-width: 20ch; }
.head p { color: var(--ink-soft); font-size: var(--step-0); margin: 0; max-width: 44ch; }
.section--dark .head p { color: #cfc8bf; }
@media (min-width: 860px) {
  .head:has(p) { display: grid; grid-template-columns: 1.35fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); align-items: end; }
  .head:has(p) .kicker { grid-column: 1 / -1; }
  .head:has(p) h2 { max-width: 19ch; }
  .head:has(p) p { padding-bottom: .35rem; }
}

/* ---------- decisão dos pais ---------- */
.decision__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.decision blockquote {
  margin: 0;
  font-size: var(--step-2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 18ch;
}
.decision blockquote .hand {
  display: block;
  font-size: .66em;
  line-height: 1.1;
  margin-top: .9rem;
  text-transform: none;
}
.decision__side .measure { margin-bottom: 1.8rem; }
.decision ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.decision li {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: var(--step-0);
  display: flex; gap: .8rem; align-items: baseline;
}
.decision li::before { content: "—"; color: var(--red); font-weight: 800; }
@media (max-width: 800px){ .decision__grid { grid-template-columns: 1fr; } }

/* ---------- jornada ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.journey__step {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-height: 230px;
  transition: background .2s ease, color .2s ease;
}
.journey__step:hover { background: var(--black); color: #fff; }
.journey__step:hover h3, .journey__step:hover .journey__age { color: #fff; }
.journey__num { font-family: var(--hand); color: var(--red); font-size: 1.3rem; }
.journey__step h3 { margin: 0; font-size: var(--step-1); }
.journey__age { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.journey__step p { font-size: var(--step--1); color: inherit; opacity: .8; margin: 0; }
@media (max-width: 900px){ .journey { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .journey { grid-template-columns: 1fr; } .journey__step { min-height: 0; } }

/* ---------- split feature (Etapa / Bilíngue / Robótica) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature--flip .feature__media { order: 2; }
.feature__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: 2px; }
.feature__media { position: relative; }
.feature__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: #fff; color: var(--ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  font-size: var(--step--1); padding: .4rem .8rem;
}
/* card de logo de parceiro (Sistema Etapa) */
.feature__logo {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid;
  place-items: center;
  padding: clamp(1.75rem, 6vw, 3.5rem);
}
.feature__logo img { width: 100%; max-width: 340px; height: auto; aspect-ratio: auto; border-radius: 6px; }

.feature ul.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.feature ul.checks li { padding-left: 1.8rem; position: relative; color: var(--ink-soft); }
.section--dark .feature ul.checks li { color: #cfc8bf; }
.feature ul.checks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 10px; height: 10px; background: var(--red);
}
@media (max-width: 820px){
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: -1; }
  .feature__media { max-width: 420px; }
}

/* ---------- 2027 ---------- */
.evo { position: relative; overflow: hidden; }
.evo__year {
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.22);
  margin: 0 0 -.1em;
}
.evo__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.5rem; }
.evo__col h3 { color: #fff; font-size: var(--step-1); }
.evo__col p { color: #cfc8bf; font-size: var(--step--1); }
.evo__col { border-top: 2px solid var(--red); padding-top: 1rem; }
@media (max-width: 760px){ .evo__cols { grid-template-columns: 1fr; } }

/* ---------- diferenciais ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--paper); padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.pillar:nth-child(1) { grid-column: 1 / -1; background: var(--black); color: #fff; }
.pillar:nth-child(1) h3 { color: #fff; }
.pillar h3 { font-size: var(--step-1); display: flex; gap: .8rem; align-items: baseline; }
.pillar h3 span { font-family: var(--hand); color: var(--red); font-size: .8em; }
.pillar p { color: var(--ink-soft); margin: 0; }
.pillar:nth-child(1) p { color: #cfc8bf; }
@media (max-width: 720px){ .pillars { grid-template-columns: 1fr; } .pillar:nth-child(1){ grid-column: auto; } }

/* ---------- história ---------- */
.story__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.story__big { font-family: var(--font); font-weight: 900; font-size: clamp(4rem, 14vw, 9rem); line-height: .85; color: var(--red); }
.story__big small { display: block; font-size: .16em; letter-spacing: .2em; color: var(--ink); font-weight: 700; margin-top: .8rem; }
.section--dark .story__big small { color: #fff; }
@media (max-width: 760px){ .story__grid { grid-template-columns: 1fr; } }

/* ---------- experiência (grid editorial) ---------- */
.xp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.6vw, 1.1rem);
}
.xp__cell {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 3 / 2;
  margin: 0;
}
.xp__cell img { width: 100%; height: 100%; object-fit: cover; }
.xp__cell figcaption {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: #fff;
  font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  font-size: var(--step--1); padding: .35rem .7rem;
}
.xp__cell--ph { display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; border: 1px dashed #c9c1b8; background: transparent; aspect-ratio: auto; min-height: 150px; }
.xp__cell--ph span { font-size: var(--step--1); color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 820px){ .xp { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .xp { grid-template-columns: 1fr; } }

/* ---------- depoimentos ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.quote {
  border: 1px solid rgba(255,255,255,.18);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.quote p { font-size: var(--step-1); font-weight: 500; color: #fff; font-style: italic; }
.quote footer { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .1em; color: var(--red); }
.quote__mark { font-family: var(--hand); color: var(--red); font-size: 2.5rem; line-height: .5; }
@media (max-width: 720px){ .quotes { grid-template-columns: 1fr; } }

/* ---------- CTA intermediário ---------- */
.cta-mid { text-align: center; }
.cta-mid h2 { max-width: 20ch; margin-inline: auto; }
.cta-mid p { margin-inline: auto; color: #fff; opacity: .92; }

/* ---------- formulário ---------- */
.form-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-block__intro .hand { font-size: 1.5rem; }
form.lead-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: var(--step--1); }
.field input, .field select {
  font: inherit;
  padding: .95rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus { outline: 3px solid rgba(245,61,67,.35); outline-offset: 1px; border-color: var(--red); }
.field--row { grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hp { position: absolute; left: -9999px; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); color: var(--ink-soft); }
.consent input { margin-top: .2rem; }
.form-note { font-size: var(--step--1); color: var(--ink-soft); }
.form-ok {
  display: none;
  padding: 1rem 1.2rem;
  background: #eef6ee;
  border: 1.5px solid #bcd9bc;
  font-weight: 600;
}
.form-ok.is-visible { display: block; }
@media (max-width: 820px){ .form-block { grid-template-columns: 1fr; } .field--row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: var(--step-1);
  color: var(--ink);
  position: relative;
}
.faq__q::after {
  content: "+";
  position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 1.6rem; font-weight: 400;
}
.faq__item.is-open .faq__q::after { content: "–"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--black); color: #cfc8bf; padding-block: clamp(3rem, 7vw, 5rem) 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
.site-footer img.logo { width: auto; height: clamp(72px, 12vw, 96px); margin-bottom: 1.5rem; }
.site-footer h4 { color: #fff; font-size: var(--step--1); letter-spacing: .14em; margin-bottom: 1rem; }
.site-footer a { color: #cfc8bf; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.social__link {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px;
  color: #cfc8bf;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.social__link svg { width: 20px; height: 20px; }
.social__link:hover { background: var(--red); border-color: var(--red); color: #fff; }
.site-footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--step--1); color: #8f877d;
}
@media (max-width: 720px){ .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: none;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
}
.sticky-cta__row { display: flex; gap: .6rem; align-items: stretch; max-width: 520px; margin-inline: auto; }
.sticky-cta .btn { flex: 1; }
.sticky-cta__wa {
  flex: 0 0 auto; width: 52px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 2px; text-decoration: none;
}
.sticky-cta__wa svg { width: 24px; height: 24px; }
@media (max-width: 900px){ .sticky-cta { display: block; } body { padding-bottom: 76px; } }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 45;
  width: 56px; height: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.35);
  transition: transform .18s ease, background .18s ease;
}
.wa-float:hover { transform: translateY(-3px); background: #000; }
.wa-float svg { width: 27px; height: 27px; }
@media (max-width: 980px){ .wa-float { display: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; z-index: 100;
}
.skip-link:focus { left: 0; }
