/* ===== Detox Digital Para Crianças — landing mobile-first =====
   Identidade visual herdada de neuranalabs.com:
   turquesa + coral + amarelo, títulos em azul-marinho sobre branco. */

:root {
  --teal: #009ea3;          /* turquesa das seções de destaque      */
  --teal-deep: #00888d;
  --coral: #ff6b6b;          /* botões de CTA, marcações negativas   */
  --coral-dark: #f2564f;
  --yellow: #ffde59;         /* destaques de título, kickers, checks */
  --gold: #c6900a;           /* amarelo com contraste p/ texto claro */
  --navy: #00163b;           /* títulos sobre branco                 */
  --ink: #131313;            /* corpo de texto sobre branco          */
  --ink-soft: #5b6470;
  --paper: #ffffff;
  --mist: #f4f7f8;           /* fundo alternado muito suave          */
  --green: #35c26b;          /* checks positivos "depois"            */
  --line: #e1e8ed;
  --q-orange: #f5811f;
  --q-magenta: #b0208c;
  --q-gold: #f5c130;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 22, 59, .12);
  --shadow-teal: 0 16px 36px rgba(0, 0, 0, .22);
  --wrap: 600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.18;
  margin: 0 0 .55em;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(1.7rem, 6.6vw, 2.7rem); line-height: 1.16; }
h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
h3 { font-size: clamp(1.08rem, 4vw, 1.22rem); font-weight: 700; margin-bottom: .45em; }

p { margin: 0 0 .95em; }
strong { font-weight: 700; }

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

/* ===== KICKER (olho editorial) ===== */
.kicker {
  font-weight: 800;
  font-size: .74rem;
  line-height: 1.4;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--coral);
}

/* ===== CTA ===== */
.cta {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 26px auto 0;
  padding: 19px 24px;
  background: var(--coral);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(255, 107, 107, .4);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  cursor: pointer;
}
.cta:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255, 107, 107, .5); }
.cta:active { transform: translateY(0); }
.cta > span::after { content: " →"; white-space: nowrap; }
.cta small { display: block; font-size: .8rem; font-weight: 600; opacity: .9; margin-top: 4px; }

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 360px;
}
.countdown div {
  flex: 1;
  text-align: center;
}
.countdown b {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.countdown span {
  display: block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 2px;
}

/* ===== SECTIONS ===== */
.sec { padding-block: 44px; }
.sec .wrap > .cta { margin-top: 28px; }

/* seções claras (padrão) */
.sec--light { background: var(--paper); }
.sec--mist { background: var(--mist); }

/* seções turquesa */
.sec--teal {
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.sec--teal h2, .sec--teal h3 { color: #fff; }
.sec--teal .kicker { color: var(--yellow); }
.sec--teal p { color: rgba(255, 255, 255, .92); }

/* ===== HERO ===== */
.hero {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding-block: 30px 44px;
}
.hero .kicker { color: var(--yellow); }
.hero h1 {
  color: #fff;
  margin-bottom: .5em;
  font-weight: 700;
  letter-spacing: .005em;
}
.hero h1 .hl { color: var(--yellow); }
.hero .sub {
  font-size: 1.06rem;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  max-width: 30ch;
  margin: 0 auto 4px;
}

.brand-logo {
  height: 82px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 22px;
  background: none;
}
@media (min-width: 720px) { .brand-logo { height: 104px; } }

.hero-img {
  margin: 24px auto 2px;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-teal);
}
.hero .reassure {
  font-size: .82rem;
  color: rgba(255, 255, 255, .78);
  margin: 14px 0 0;
}

/* ===== IMAGE ===== */
.rounded {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px auto 24px;
  width: 100%;
}
.sec--teal .rounded { box-shadow: var(--shadow-teal); border: 4px solid #fff; }

/* ===== LISTS ===== */
.list { list-style: none; padding: 0; margin: 0 0 1.3em; }
.list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
}
.list li::before {
  position: absolute;
  left: 0; top: .1em;
  font-weight: 800;
  font-size: 1em;
}
.list--x li::before { content: "✕"; color: var(--coral); }
.list--check li::before { content: "✔"; color: var(--green); }
.list--arrow li::before { content: "➜"; color: var(--coral); }

/* checks em círculo amarelo (bloco "o que está incluído") */
.list--tick li { padding-left: 38px; margin-bottom: 13px; }
.list--tick li::before {
  content: "✔";
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  top: 0;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  font-size: .72rem;
}

/* ===== TESTIMONIALS ===== */
.cards { display: grid; gap: 22px; margin-top: 24px; }
.quote {
  background: #fff;
  border-left: 8px solid var(--q-orange);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 0;
  padding: 20px 22px 24px;
}
.quote:nth-child(2) { border-left-color: var(--q-magenta); }
.quote:nth-child(3) { border-left-color: var(--q-gold); }
.quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: .8;
  height: .5em;
  color: var(--q-orange);
}
.quote:nth-child(2)::before { color: var(--q-magenta); }
.quote:nth-child(3)::before { color: var(--q-gold); }
.quote blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--navy); }
.quote figcaption b { display: block; color: var(--navy); font-weight: 800; }
.quote figcaption span { color: var(--ink-soft); font-size: .9rem; }

/* ===== 4 SKILLS ===== */
.grid4 { display: grid; gap: 26px; margin-top: 26px; text-align: center; }
.skill img {
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-teal);
  margin: 0 auto 14px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  max-width: 340px;
}
.skill h3 { color: #fff; margin-bottom: .4em; }
.skill p { margin: 0 auto; max-width: 42ch; font-size: .98rem; }

/* ===== BLOCO "O QUE ESTÁ INCLUÍDO" ===== */
.offer {
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 26px 20px;
  margin-top: 8px;
  background: #fff;
}
.offer .kicker { color: var(--gold); }
.offer > img { margin: 0 auto 22px; border-radius: 12px; width: 100%; max-width: 420px; }
.gift-divider {
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  margin: 22px 0 18px;
}

.price {
  text-align: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.price-from { margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.price-from s { font-weight: 700; }
.price-now { margin: 4px 0 0; font-size: 1.9rem; font-weight: 800; color: var(--coral); }

/* ===== ANTES E DEPOIS ===== */
.ba { margin-top: 8px; }
.ba h3 { margin-top: 26px; }
.ba .list { text-align: left; max-width: 34ch; margin-inline: auto; }
.sec--teal .list--check li::before { color: var(--green); }

/* ===== FASES ===== */
.phase {
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 22px;
}
.phase > img {
  width: 190px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(0, 22, 59, .22));
}
.phase h3 { margin-bottom: .35em; }
.phase h3 .p-num { color: var(--coral); }
.phase .list { margin-bottom: 0; }

/* ===== CTA FINAL ===== */
.final .offer-img {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

/* ===== FOOTER ===== */
.foot {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding-block: 34px 40px;
  font-size: .8rem;
  line-height: 1.7;
  text-align: center;
}
.foot .wrap { max-width: 680px; }
.foot-nav {
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 18px;
  font-size: .82rem;
}
.foot-nav a { color: var(--navy); text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; }
.foot p { margin: 0 0 14px; }
.foot strong { color: var(--ink); }

/* ===== PÁGINAS LEGAIS ===== */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 60px;
}
.legal a.back { color: var(--teal-deep); font-weight: 700; text-decoration: none; font-size: .9rem; }
.legal h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin: 18px 0 6px; }
.legal h2 { font-size: 1.15rem; margin: 28px 0 8px; color: var(--navy); }
.legal p { color: var(--ink); }
.legal .muted { color: var(--ink-soft); font-size: .9rem; }
.legal ul { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 6px; }
.legal .disclaimer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-soft);
}

/* ===== DESKTOP ===== */
@media (min-width: 720px) {
  body { font-size: 17px; }
  .cards { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .skill img { max-width: none; }
  .phase { grid-template-columns: 190px 1fr; align-items: center; text-align: left; }
  .phase > img { margin: 0; }
  .sec { padding-block: 64px; }
  .ba-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
  .ba .list { margin-inline: 0; }
}
@media (min-width: 940px) {
  .wrap--wide .grid4 { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
