/* ============================================================
   Grupo Catapulta — Landing TDAH Completo
   Paleta da marca · Baloo 2 (títulos) + Inter (texto)
   ============================================================ */

:root {
  --coral:  #ff9aa2;
  --peach:  #ffd3b5;
  --green:  #b5d6a7;
  --blue:   #a7c7e7;
  --purple: #e6c6ff;

  --coral-deep: #e8606b;
  --coral-ink:  #b23a44;
  --ink:        #2c2b35;
  --ink-soft:   #565463;
  --ink-faint:  #8b8896;
  --line:       #ece9f1;
  --bg:         #ffffff;
  --bg-soft:    #fdf7f6;
  --bg-cream:   #fffaf6;

  --radius:     22px;
  --radius-sm:  14px;
  --shadow:     0 18px 40px -18px rgba(60, 40, 60, .25);
  --shadow-sm:  0 8px 22px -12px rgba(60, 40, 60, .25);
  --maxw:       1120px;
}

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

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

h1, h2, h3, h4, .plan__price, .topbar__brand {
  font-family: 'Baloo 2', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -.01em;
}
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

.hl { color: var(--coral-ink); }
.hl--coral { color: var(--coral-deep); }

.eyebrow {
  display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.02rem; text-decoration: none;
  padding: 15px 30px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); color: #fff;
  box-shadow: 0 12px 24px -10px rgba(232, 96, 107, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(232, 96, 107, .8); }
.btn--outline { background: #fff; color: var(--coral-ink); border-color: var(--coral); }
.btn--outline:hover { transform: translateY(-2px); background: var(--bg-cream); }
.btn--lg { padding: 18px 40px; font-size: 1.12rem; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }

/* Chips */
.chip { display: inline-block; font-weight: 600; font-size: .86rem; padding: 7px 16px; border-radius: 100px; color: var(--ink); }
.chip--coral  { background: var(--coral); }
.chip--peach  { background: var(--peach); }
.chip--green  { background: var(--green); }
.chip--blue   { background: var(--blue); }
.chip--purple { background: var(--purple); }

/* Topbar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transform: translateY(-100%); transition: transform .3s ease;
}
.topbar.is-visible { transform: translateY(0); }
.topbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 22px; display: flex; align-items: center; justify-content: space-between; }
.topbar__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.topbar__logo { width: 34px; height: 34px; }

/* Hero */
.hero {
  position: relative; padding: 96px 0 120px; text-align: center; overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,154,162,.30), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(167,199,231,.32), transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(230,198,255,.28), transparent 50%),
    radial-gradient(circle at 8% 88%, rgba(181,214,167,.30), transparent 42%),
    var(--bg-cream);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero__logo { width: 92px; height: 92px; margin: 0 auto 22px; filter: drop-shadow(0 10px 18px rgba(60,40,60,.12)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero__title { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; margin-bottom: 22px; color: var(--ink); }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.28rem); max-width: 660px; margin: 0 auto 26px; color: var(--ink-soft); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.hero__date { display: inline-block; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: clamp(.95rem, 2.2vw, 1.1rem); color: var(--ink); background: var(--coral); padding: 11px 24px; border-radius: 100px; margin-bottom: 26px; box-shadow: 0 12px 24px -12px rgba(232, 96, 107, .6); }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__meta { font-size: .92rem; color: var(--ink-soft); font-weight: 500; max-width: 460px; }

.wave--bottom {
  position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; background: var(--bg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: cover; mask-size: cover;
}

/* Seções */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.lead { font-size: clamp(1.08rem, 2.2vw, 1.28rem); color: var(--ink-soft); margin-bottom: 20px; }
.section p + p { margin-top: 16px; }

/* Cards de dor */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0; }
.pain-card { background: #fff; border-radius: var(--radius-sm); padding: 26px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; }
.pain-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: color-mix(in srgb, var(--c) 35%, #fff); font-size: 1.7rem; margin-bottom: 14px; }
.pain-card p { font-size: 1rem; }

/* Quote */
.quote { font-family: 'Baloo 2', sans-serif; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 600; color: var(--coral-ink); text-align: center; line-height: 1.4; margin: 40px auto; max-width: 720px; padding: 0 20px; }
.quote--center { color: var(--ink); }

/* Feature */
.section--feature { background: radial-gradient(circle at 90% 0%, rgba(255,211,181,.35), transparent 40%), radial-gradient(circle at 0% 100%, rgba(167,199,231,.28), transparent 45%), var(--bg); }
.feature__head { text-align: center; max-width: 820px; margin: 0 auto 50px; }
.feature__head .chip { margin-bottom: 18px; }
.feature__subtitle { text-align: center; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 30px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: #fff; border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-top: 5px solid var(--accent); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__num { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--accent); margin-bottom: 8px; }
.card h4 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 1rem; }

/* Lista de features */
.features-list { list-style: none; margin-top: 30px; display: grid; gap: 12px; }
.features-list li { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 22px; font-size: 1.08rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.features-list__ico { font-size: 1.4rem; flex-shrink: 0; }

/* Hosts */
.hosts { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.hosts__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; background: linear-gradient(160deg, var(--coral), var(--purple)); }
.hosts__photo img { width: 100%; display: block; }
.ticks { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 500; }
.ticks li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #2f6a22; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; }

/* Pricing */
.section--pricing { background: radial-gradient(circle at 50% 0%, rgba(230,198,255,.30), transparent 45%), var(--bg-soft); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.plan { background: #fff; border-radius: var(--radius); padding: 36px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-align: center; position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured { border: 2px solid var(--coral); box-shadow: 0 24px 50px -20px rgba(232,96,107,.5); transform: scale(1.03); }
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan__ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--coral), var(--coral-deep)); color: #fff; font-weight: 700; font-size: .8rem; padding: 6px 18px; border-radius: 100px; font-family: 'Baloo 2', sans-serif; box-shadow: 0 8px 16px -8px rgba(232,96,107,.8); }
.plan__name { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.plan__desc { font-size: .96rem; min-height: 48px; margin-bottom: 16px; }
.plan__price { font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.plan__currency { font-size: 1.3rem; vertical-align: super; margin-right: 4px; color: var(--ink-soft); }
.plan__cents { font-size: 1.4rem; }
.plan__period { font-size: 1.1rem; color: var(--ink-soft); font-weight: 600; }
.plan__note { font-size: .9rem; color: var(--ink-soft); margin-bottom: 24px; min-height: 40px; }
.plan__btn { margin-top: auto; width: 100%; }
.plans__legend { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-top: 22px; }

/* CTA final */
.final-cta { background: radial-gradient(circle at 20% 20%, rgba(255,154,162,.25), transparent 45%), radial-gradient(circle at 80% 80%, rgba(167,199,231,.25), transparent 45%), var(--bg-cream); }

/* Rodapé */
.footer { background: var(--ink); color: #fff; padding: 50px 0; text-align: center; }
.footer__logo { width: 56px; height: 56px; margin: 0 auto 14px; }
.footer__brand { color: #fff; font-weight: 600; font-family: 'Baloo 2', sans-serif; }
.footer__fine { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 6px; }

/* CTA flutuante */
.floating-cta { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 90; background: linear-gradient(135deg, var(--coral), var(--coral-deep)); color: #fff; font-family: 'Baloo 2', sans-serif; font-weight: 700; text-decoration: none; padding: 15px 38px; border-radius: 100px; box-shadow: 0 14px 30px -8px rgba(232,96,107,.8); transition: transform .3s ease; display: none; }
.floating-cta.is-visible { transform: translateX(-50%) translateY(0); }

/* Microcopy sob os botões */
.cta-note { font-size: .92rem; color: var(--ink-soft); font-weight: 500; margin-top: 14px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Extras da landing TDAH Completo
   ============================================================ */
.hero__date .strike { text-decoration: line-through; opacity: .7; font-weight: 600; margin-right: 6px; }

.offer { max-width: 560px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 34px; position: relative; }
.offer__tag { display: inline-block; background: var(--coral); color: var(--ink); font-weight: 700; font-size: .82rem; padding: 6px 16px; border-radius: 100px; margin-bottom: 18px; }
.offer__from { color: var(--ink-soft); font-size: 1.05rem; }
.offer__from s { color: var(--ink-faint); }
.offer__price { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--ink); font-size: 3.4rem; line-height: 1; margin: 6px 0 4px; }
.offer__price small { font-size: 1.4rem; vertical-align: super; color: var(--ink-soft); margin-right: 4px; }
.offer__cond { color: var(--coral-deep); font-weight: 600; font-size: .95rem; margin-bottom: 24px; }
.offer__note { font-size: .9rem; color: var(--ink-soft); margin-top: 18px; }

.timeline { display: grid; gap: 16px; margin-top: 34px; }
.tl-item { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 26px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--accent, var(--coral)); }
.tl-item__when { flex-shrink: 0; min-width: 120px; font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--accent, var(--coral-deep)); font-size: 1.05rem; line-height: 1.3; }
.tl-item__what h4 { font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
.tl-item__what p { font-size: .98rem; }

.btn--wa { background: #25d366; color: #0b3d1f; box-shadow: 0 12px 24px -12px rgba(37, 211, 102, .7); }
.btn--wa:hover { background: #20bd5a; transform: translateY(-2px); }

.faq { max-width: 760px; margin: 30px auto 0; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: 'Baloo 2', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.6rem; color: var(--coral-deep); flex-shrink: 0; transition: transform .2s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 22px; color: var(--ink-soft); }
.faq__answer p { margin: 0; }

/* Ementa / módulos */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; align-items: start; }
.module { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 32px 30px; border-top: 5px solid var(--accent, var(--coral)); }
.module__head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.module__head .chip { align-self: flex-start; }
.module__head h3 { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.module__sub { font-family: 'Baloo 2', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--coral-deep); margin: 22px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.module__sub:first-of-type { margin-top: 0; }
.syllabus { list-style: none; display: grid; gap: 12px; }
.syllabus li { position: relative; padding-left: 26px; font-size: .97rem; color: var(--ink-soft); }
.syllabus li::before { content: '›'; position: absolute; left: 6px; top: -1px; color: var(--coral); font-weight: 700; font-size: 1.1rem; }
.syllabus li strong { color: var(--ink); }
.ementa__actions { text-align: center; margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 880px) {
  .pains { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hosts { grid-template-columns: 1fr; gap: 30px; }
  .hosts__photo { max-width: 420px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plan--featured { transform: none; order: -1; }
  .plan--featured:hover { transform: translateY(-4px); }
  .floating-cta { display: inline-flex; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 90px; }
}
@media (max-width: 780px) { .modules { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .tl-item { flex-direction: column; gap: 6px; } .offer__price { font-size: 2.8rem; } }
@media (max-width: 480px) { body { font-size: 16px; } .btn--lg { padding: 16px 30px; font-size: 1.05rem; } .topbar__brand span { display: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ============================================================
   Hero com foto do farol escurecida — Farol: Além do Boletim
   ============================================================ */
.hero.hero--photo {
  background:
    linear-gradient(180deg, rgba(14,18,28,.60) 0%, rgba(14,18,28,.72) 55%, rgba(10,14,22,.85) 100%),
    var(--hero-photo, none);
  background-size: cover; background-position: center;
}
.hero--photo .eyebrow { color: #ffd3b5; }
.hero--photo .hero__title { color: #ffffff; }
.hero--photo .hero__title .hl { color: #ffd98a; }
.hero--photo .hero__sub { color: rgba(255,255,255,.90); }
.hero--photo .hero__sub strong { color: #ffffff; }
.hero--photo .hero__meta { color: rgba(255,255,255,.82); }
.hero--photo .hero__logo { filter: drop-shadow(0 8px 20px rgba(0,0,0,.5)); }

/* Destaque de estatística */
.statline { display:flex; flex-wrap:wrap; gap:18px; justify-content:center; margin:36px 0 8px; }
.stat { background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); box-shadow:var(--shadow-sm); padding:22px 26px; text-align:center; min-width:200px; flex:1; }
.stat__num { font-family:'Baloo 2',sans-serif; font-weight:800; font-size:2.4rem; color:var(--coral-deep); line-height:1; }
.stat__label { font-size:.95rem; color:var(--ink-soft); margin-top:8px; }
