/* ============================================================
   Centro Educacional Maria Zélia — landing
   Conceito: Acolhimento Editorial Infantil (claro, caloroso, premium-lúdico)
   Paleta extraída da marca real: teal, coral, sol/amarelo
   ============================================================ */

:root {
  --bg: #FFFBF4;
  --bg-warm: #FFF3E2;
  --paper: #FFFFFF;
  --ink: #2B2926;
  --muted: #6E6A62;

  --teal: #0E9B95;
  --teal-deep: #0B6F6B;
  --teal-ink: #073f3d;

  --coral: #EF4136;
  --coral-deep: #D8362C;

  --sun: #F8B500;
  --sun-soft: #FCD66B;
  --sky: #2E86C7;

  --line: #ECE3D4;
  --line-soft: #F5EEE1;
  --wa: #25D366;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 18px 42px -24px rgba(60, 45, 15, .42);
  --shadow-soft: 0 10px 30px -18px rgba(60, 45, 15, .35);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: 'Fredoka', system-ui, sans-serif; font-weight: 600; line-height: 1.1; letter-spacing: -.01em; }

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

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fredoka', sans-serif; font-weight: 500;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--sun); border-radius: 2px; }

.section { padding: 92px 0; position: relative; }
.section__head { max-width: 660px; margin-bottom: 46px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(1.9rem, 4.2vw, 2.85rem); margin: 14px 0 16px; }
.section__head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--solid { background: var(--coral); color: #fff; box-shadow: 0 14px 28px -14px rgba(216, 54, 44, .7); }
.btn--solid:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(216, 54, 44, .8); }
.btn--gold { background: var(--sun); color: var(--teal-ink); box-shadow: 0 14px 28px -16px rgba(248, 181, 0, .8); }
.btn--gold:hover { background: var(--sun-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal); }
.btn--ghost:hover { background: rgba(14, 155, 149, .08); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--teal-deep); box-shadow: var(--shadow-soft); }
.btn--light:hover { transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 244, .86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand__logo { border-radius: 50%; box-shadow: 0 4px 12px -6px rgba(0,0,0,.3); }
.brand__name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); line-height: 1.05; }
.brand__name span { display: block; font-size: .72rem; font-weight: 400; color: var(--teal-deep); letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: .95rem; color: var(--muted); font-weight: 600; transition: color .25s; position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--sun); border-radius: 2px; transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__links .btn { color: #fff; font-size: .95rem; padding: 10px 20px; }
.nav__links .btn:hover { color: #fff; }
.nav__links .btn::after { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 84px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 420px at 18% -6%, rgba(248, 181, 0, .22), transparent 60%),
    radial-gradient(640px 460px at 96% 8%, rgba(14, 155, 149, .16), transparent 62%);
}
.hero__grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr;
  grid-template-areas: "copy media" "cta media" "chips media";
  column-gap: 54px; align-items: center; align-content: center;
}
.hero__copy { grid-area: copy; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.55rem); margin: 18px 0 20px; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero h1 .tl { color: var(--teal-deep); }
.hero__sub { font-size: 1.14rem; color: var(--muted); max-width: 30em; }
.hero__cta { grid-area: cta; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__chips { grid-area: chips; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: .88rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.chip svg { width: 16px; height: 16px; color: var(--teal); }

.hero__media { grid-area: media; align-self: center; position: relative; }
.hero__media img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); position: relative; z-index: 1; aspect-ratio: 11/9.4; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: -16px -16px auto auto; width: 110px; height: 110px; z-index: 0;
  background: radial-gradient(circle, rgba(248,181,0,.35), transparent 70%);
}
.hero__badge {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero__badge .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: rgba(14,155,149,.12); display: grid; place-items: center; color: var(--teal-deep); }
.hero__badge .ic svg { width: 22px; height: 22px; }
.hero__badge b { font-family: 'Fredoka', sans-serif; font-size: .98rem; display: block; }
.hero__badge small { color: var(--muted); font-size: .82rem; }

/* ---------- Trust band (teal) ---------- */
.trust { position: relative; background: linear-gradient(160deg, var(--teal), var(--teal-deep)); color: #fff; padding: 56px 0; overflow: hidden; }
.trust::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 300px at 50% -30%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.trust__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__item .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.trust__item .ic svg { width: 24px; height: 24px; color: #fff; }
.trust__item b { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; display: block; margin-bottom: 3px; }
.trust__item p { font-size: .94rem; color: rgba(255,255,255,.86); line-height: 1.5; }

/* ---------- Proposta ---------- */
.proposta { text-align: center; }
.proposta .quote { font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: clamp(1.6rem, 3.6vw, 2.4rem); line-height: 1.28; max-width: 18em; margin: 0 auto; color: var(--ink); }
.proposta .quote em { font-style: normal; color: var(--coral); }
.proposta .quote .tl { color: var(--teal-deep); }
.proposta .sig { margin-top: 22px; color: var(--muted); font-weight: 700; }

/* ---------- Cards (diferenciais) ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; }
.card__ico svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.ic-teal { background: rgba(14,155,149,.12); color: var(--teal-deep); }
.ic-coral { background: rgba(239,65,54,.1); color: var(--coral-deep); }
.ic-sun { background: rgba(248,181,0,.16); color: #B5790A; }
.ic-sky { background: rgba(46,134,199,.12); color: var(--sky); }

/* ---------- Inclusão ---------- */
.inclusao { background: var(--bg-warm); }
.inclusao__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.inclusao__card { background: #fff; border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft); }
.inclusao__card .ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(150deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; margin-bottom: 20px; }
.inclusao__card .ic svg { width: 30px; height: 30px; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inclusao__card h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); margin-bottom: 14px; }
.inclusao__card p { color: var(--muted); margin-bottom: 14px; }
.inclusao__card .hl { color: var(--teal-deep); font-weight: 800; }
.inclusao__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- Níveis ---------- */
.niveis__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nivel {
  position: relative; border-radius: var(--radius); padding: 38px 34px; overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft);
}
.nivel--inf { background: linear-gradient(160deg, #fff, #FFF6E9); }
.nivel--fund { background: linear-gradient(160deg, #fff, #EAF7F6); }
.nivel .tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.nivel--inf .tag { background: rgba(248,181,0,.18); color: #B5790A; }
.nivel--fund .tag { background: rgba(14,155,149,.14); color: var(--teal-deep); }
.nivel h3 { font-size: 1.5rem; margin-bottom: 8px; }
.nivel p { color: var(--muted); margin-bottom: 18px; }
.nivel ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.nivel li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .98rem; }
.nivel li svg { width: 18px; height: 18px; flex: none; color: var(--teal); stroke-width: 3; }
.nivel .ic-big { position: absolute; right: 22px; top: 26px; opacity: .14; }
.nivel .ic-big svg { width: 64px; height: 64px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.nivel--inf .ic-big { color: #B5790A; }
.nivel--fund .ic-big { color: var(--teal-deep); }

/* ---------- Galeria ---------- */
.carousel { position: relative; }
.track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.track::-webkit-scrollbar { display: none; }
.track .slide { flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; }
.track .slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.track .slide:hover img { transform: scale(1.05); }
.track__nav { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }
.track__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--teal); background: #fff; color: var(--teal-deep); cursor: pointer; display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease), opacity .2s; }
.track__arrow:hover:not(:disabled) { background: var(--teal); color: #fff; transform: translateY(-2px); }
.track__arrow:disabled { opacity: .35; cursor: default; }
.track__arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Sobre ---------- */
.sobre__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.sobre__media { position: relative; }
.sobre__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.sobre__media .stat { position: absolute; right: -14px; bottom: 24px; background: var(--coral); color: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); text-align: center; }
.sobre__media .stat b { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; display: block; }
.sobre__media .stat small { font-size: .76rem; opacity: .92; }
.sobre h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.sobre p { color: var(--muted); margin-bottom: 16px; }
.sobre .gestora { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.sobre .gestora .av { width: 52px; height: 52px; border-radius: 50%; background: rgba(14,155,149,.12); color: var(--teal-deep); display: grid; place-items: center; font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 600; flex: none; }
.sobre .gestora b { font-family: 'Fredoka', sans-serif; display: block; }
.sobre .gestora small { color: var(--muted); }

/* ---------- Matrículas / passos ---------- */
.matriculas { background: linear-gradient(180deg, var(--bg-warm), var(--bg)); }
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.passo { position: relative; background: #fff; border-radius: var(--radius); padding: 34px 28px 30px; box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft); }
.passo .n { counter-increment: step; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1rem; width: 40px; height: 40px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.passo .n::before { content: counter(step); }
.passo h3 { font-size: 1.2rem; margin-bottom: 7px; }
.passo p { color: var(--muted); font-size: .97rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 1.12rem; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--teal); transition: transform .3s var(--ease); font-family: 'Nunito'; }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__item.open .faq__a { max-height: 320px; }
.faq__a p { padding: 0 0 22px; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta { position: relative; background: linear-gradient(155deg, var(--teal), var(--teal-deep)); color: #fff; text-align: center; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 320px at 50% 0%, rgba(248,181,0,.22), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; padding: 86px 0; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 34em; margin: 0 auto 30px; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-ink); color: rgba(255,255,255,.82); padding: 64px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { border-radius: 50%; }
.footer__brand b { font-family: 'Fredoka', sans-serif; color: #fff; font-size: 1.05rem; }
.footer p { font-size: .95rem; line-height: 1.7; }
.footer h4 { font-family: 'Fredoka', sans-serif; font-weight: 500; color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__list a, .footer__list span { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; transition: color .2s; }
.footer__list a:hover { color: #fff; }
.footer__list svg { width: 18px; height: 18px; flex: none; color: var(--sun); margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .25s; }
.footer__social a:hover { background: var(--sun); color: var(--teal-ink); }
.footer__social svg { width: 20px; height: 20px; }
.foot__legalbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; flex-wrap: wrap; }
.foot__legalbar small { font-size: .85rem; color: rgba(255,255,255,.6); }
.foot__legalbar a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 2px; }
.foot__legalbar a:hover { color: #fff; }

/* ---------- Mapa ---------- */
.mapa { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft); background: #fff; }
.mapa__info { padding: 40px 34px; }
.mapa__info h3 { font-size: 1.4rem; margin-bottom: 14px; }
.mapa__info ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.mapa__info li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.mapa__info li svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: 2px; }
.mapa__info li b { color: var(--ink); display: block; font-family: 'Fredoka', sans-serif; font-weight: 500; }
.mapa iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(37, 211, 102, .65);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 920px) {
  .hero { padding: 30px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "media" "cta" "chips"; column-gap: 0; text-align: center; }
  .hero .eyebrow, .hero__sub { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: clamp(1.95rem, 7vw, 2.5rem); margin: 12px 0 14px; }
  .hero__sub { font-size: 1.04rem; }
  .hero__media { max-width: 400px; margin: 18px auto 0; }
  .hero__media img { aspect-ratio: 16/10; max-height: 230px; }
  .hero__badge { max-width: 190px; padding: 11px 14px; left: 0; }
  .hero__badge .ic { width: 36px; height: 36px; }
  .hero__cta { justify-content: center; margin-top: 20px; }
  .hero__chips { justify-content: center; margin-top: 16px; }
  .inclusao__grid, .sobre__grid, .mapa { grid-template-columns: 1fr; }
  .sobre__media { max-width: 420px; }
  .mapa iframe { min-height: 280px; }
  .grid-cards, .passos { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; gap: 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg); max-height: 0; overflow: hidden; visibility: hidden;
    padding: 0 22px; align-items: stretch;
    transition: max-height .42s var(--ease), visibility .42s var(--ease);
  }
  .nav__links.open { max-height: 90vh; visibility: visible; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 22px 22px; }
  .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 14px; padding: 14px; }
  .hero__badge { left: 8px; }
  .track .slide { flex-basis: 80%; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-cards, .passos, .niveis__grid, .footer__grid { grid-template-columns: 1fr; }
  .track .slide { flex-basis: 86%; }
  .hero__cta .btn, .cta__btns .btn { width: 100%; }
  .brand__name { font-size: .95rem; }
  .sobre__media .stat { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
