/* ============================================
   Turma Curiosa — Atividades para Crianças
   Design tokens
   ============================================ */
:root{
  --ink:#16264A;
  --paper:#FFF9EE;
  --paper-2:#FFF1D6;
  --sun:#FFC53D;
  --coral:#FF6B4F;
  --grass:#2FA36A;
  --sky:#3EA0E0;
  --violet:#8B6BD9;
  --white:#ffffff;
  --line: rgba(22,38,74,0.12);
  --shadow: 0 18px 40px -18px rgba(22,38,74,0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-display: "Baloo 2", ui-rounded, "Segoe UI", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:.2px;
}
p{margin:0 0 1em;}
.container{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:999px;
  background:var(--white);
  border:2px solid var(--ink);
  box-shadow:3px 3px 0 var(--ink);
}
.section{padding:76px 0;}
.section--tight{padding:56px 0;}
.section-title{
  font-size:clamp(1.8rem,3.6vw,2.6rem);
  max-width:720px;
}
.section-lead{
  font-size:1.08rem;
  max-width:620px;
  color:#3A4B72;
}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  padding:18px 34px;
  border-radius:999px;
  text-decoration:none;
  cursor:pointer;
  border:3px solid var(--ink);
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:5px 5px 0 var(--ink);
}
.btn:hover{transform:translate(-2px,-2px);box-shadow:7px 7px 0 var(--ink);}
.btn:active{transform:translate(1px,1px);box-shadow:2px 2px 0 var(--ink);}
.btn--primary{background:var(--coral);color:var(--white);}
.btn--sun{background:var(--sun);color:var(--ink);}
.btn--ghost{background:var(--white);color:var(--ink);}
.btn--block{width:100%;}
.btn small{display:block;font-family:var(--font-body);font-weight:600;font-size:.7rem;opacity:.85;text-transform:none;letter-spacing:0;}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,249,238,0.92);
  backdrop-filter:blur(6px);
  border-bottom:2px solid var(--line);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:14px;padding-bottom:14px;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-display);font-weight:700;font-size:1.15rem;
}
.brand-mark{
  width:38px;height:38px;border-radius:11px;
  background:var(--sun);border:2.5px solid var(--ink);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
}
.header-cta{font-size:.85rem;padding:12px 22px;}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,197,61,0.35), transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(62,160,224,0.28), transparent 42%),
    var(--paper);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.hero-badges{
  display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 26px;
}
.pill-stat{
  background:var(--white);border:2px solid var(--ink);border-radius:999px;
  padding:8px 16px;font-weight:800;font-size:.85rem;
  box-shadow:3px 3px 0 var(--ink);
}
.pill-stat span{display:block;font-weight:600;font-size:.68rem;opacity:.7;}
.hero h1{font-size:clamp(2.2rem,4.4vw,3.4rem);}
.hero h1 mark{
  background:none;color:var(--coral);position:relative;
}
.hero-sub{font-size:1.12rem;color:#3A4B72;max-width:520px;margin-bottom:26px;}
.hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:16px;}
.hero-trust{margin-top:16px;font-size:.85rem;color:#5A6B90;display:flex;align-items:center;gap:8px;}
.hero-visual{position:relative;}
.hero-visual img{
  border-radius:var(--radius-lg);
  border:4px solid var(--ink);
  box-shadow:var(--shadow);
}
.floaty{
  position:absolute;
  filter:drop-shadow(2px 4px 0 rgba(22,38,74,0.25));
  animation:bob 5s ease-in-out infinite;
}
@keyframes bob{0%,100%{transform:translateY(0) rotate(var(--rot,0deg));}50%{transform:translateY(-12px) rotate(var(--rot,0deg));}}
@media (prefers-reduced-motion: reduce){.floaty{animation:none;}}

/* Pain points */
.pain-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;
}
.pain-card{
  background:var(--white);border:2px solid var(--ink);border-radius:var(--radius-md);
  padding:28px;box-shadow:6px 6px 0 var(--line);
}
.pain-card .ico{font-size:1.8rem;margin-bottom:10px;display:block;}
.pain-card h3{font-size:1.15rem;}
.pain-card p{color:#4A587F;font-size:.96rem;margin:0;}

/* Feature grid */
.feature-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:44px;
}
.feature-card{
  background:var(--white);
  border:2px solid var(--ink);
  border-radius:var(--radius-md);
  padding:26px;
  position:relative;
}
.feature-card .tag{
  display:inline-block;width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:1.35rem;
  margin-bottom:14px;border:2px solid var(--ink);
}
.feature-card h3{font-size:1.08rem;margin-bottom:6px;}
.feature-card p{font-size:.92rem;color:#4A587F;margin:0;}
.tag--yellow{background:var(--sun);}
.tag--coral{background:var(--coral);color:#fff;}
.tag--green{background:var(--grass);color:#fff;}
.tag--sky{background:var(--sky);color:#fff;}
.tag--violet{background:var(--violet);color:#fff;}

/* Product showcase */
.showcase{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:44px;
}
.showcase-card{
  background:var(--white);border:2px solid var(--ink);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:6px 6px 0 var(--line);
  display:flex;flex-direction:column;
}
.showcase-card .thumb{
  aspect-ratio:4/3;overflow:hidden;border-bottom:2px solid var(--ink);
  background:var(--paper-2);
}
.showcase-card .thumb img{width:100%;height:100%;object-fit:cover;}
.showcase-card .thumb.illustration{display:flex;align-items:center;justify-content:center;font-size:3.4rem;}
.showcase-body{padding:22px 22px 26px;flex:1;display:flex;flex-direction:column;}
.showcase-body h3{font-size:1.1rem;}
.showcase-body p{font-size:.92rem;color:#4A587F;flex:1;}
.price-tag{
  align-self:flex-start;margin-top:10px;
  font-family:var(--font-display);font-weight:700;font-size:.9rem;
  background:var(--paper-2);border:2px solid var(--ink);border-radius:999px;
  padding:6px 14px;
}
.price-tag s{opacity:.55;margin-right:6px;font-weight:600;}
.price-tag b{color:var(--coral);}

/* Bonus list */
.bonus-strip{
  background:var(--ink);color:var(--paper);border-radius:var(--radius-lg);
  padding:44px;margin-top:44px;
}
.bonus-strip .section-title, .bonus-strip .section-lead{color:var(--paper);}
.bonus-strip .section-lead{color:#C7D3F0;}
.bonus-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:30px;}
.bonus-item{
  display:flex;gap:14px;align-items:flex-start;
  background:rgba(255,249,238,0.06);
  border:2px solid rgba(255,249,238,0.25);
  border-radius:var(--radius-md);padding:18px 20px;
}
.bonus-item .num{
  font-family:var(--font-display);font-weight:700;color:var(--sun);font-size:1.3rem;flex:none;
}
.bonus-item h4{margin:0 0 4px;font-size:1rem;color:#fff;}
.bonus-item p{margin:0;font-size:.88rem;color:#C7D3F0;}
.bonus-item .val{
  margin-top:8px;font-size:.8rem;font-weight:700;color:var(--sun);
}

/* Pricing */
.pricing-wrap{display:flex;justify-content:center;margin-top:44px;}
.price-card{
  max-width:480px;width:100%;
  background:var(--white);border:3px solid var(--ink);border-radius:var(--radius-lg);
  padding:38px;box-shadow:9px 9px 0 var(--coral);
  text-align:center;
}
.price-card .badge-top{
  display:inline-block;background:var(--sun);border:2px solid var(--ink);
  border-radius:999px;padding:6px 16px;font-weight:800;font-size:.78rem;
  margin-bottom:18px;
}
.price-breakdown{
  text-align:left;margin:22px 0;border-top:2px dashed var(--line);border-bottom:2px dashed var(--line);
  padding:18px 0;
}
.price-breakdown div{display:flex;justify-content:space-between;font-size:.92rem;padding:6px 0;color:#3A4B72;}
.price-breakdown b{color:var(--ink);}
.price-old{font-size:1.1rem;color:#8A96B5;text-decoration:line-through;margin-bottom:2px;}
.price-new{font-family:var(--font-display);font-weight:700;font-size:3rem;color:var(--coral);line-height:1;}
.price-new sup{font-size:1.4rem;top:-1.2em;}
.price-install{font-size:.95rem;color:#3A4B72;margin:8px 0 22px;font-weight:700;}
.guarantee-row{
  display:flex;align-items:center;gap:10px;justify-content:center;
  margin-top:18px;font-size:.85rem;color:#4A587F;
}

/* Testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:44px;}
.testi-card{
  background:var(--paper-2);border:2px solid var(--ink);border-radius:var(--radius-md);
  padding:24px;
}
.testi-card p{font-size:.95rem;color:#3A4B72;margin-bottom:16px;}
.testi-who{display:flex;align-items:center;gap:10px;}
.testi-avatar{
  width:40px;height:40px;border-radius:50%;background:var(--sky);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:700;
  border:2px solid var(--ink);
}
.testi-who strong{display:block;font-size:.9rem;}
.testi-who span{font-size:.78rem;color:#7683A6;}

/* Photo band */
.photo-band{
  border-radius:var(--radius-lg);overflow:hidden;border:3px solid var(--ink);
  box-shadow:var(--shadow);margin-top:44px;
}
.photo-band img{width:100%;object-fit:cover;max-height:420px;}

/* FAQ */
.faq{max-width:760px;margin:44px auto 0;}
details{
  background:var(--white);border:2px solid var(--ink);border-radius:var(--radius-md);
  padding:18px 22px;margin-bottom:14px;
}
summary{
  font-family:var(--font-display);font-weight:700;font-size:1.02rem;cursor:pointer;
  list-style:none;display:flex;justify-content:space-between;align-items:center;
}
summary::-webkit-details-marker{display:none;}
summary::after{content:"+";font-size:1.4rem;color:var(--coral);}
details[open] summary::after{content:"–";}
details p{margin:12px 0 0;color:#4A587F;font-size:.94rem;}

/* Final CTA */
.final-cta{
  background:linear-gradient(135deg, var(--coral), #ff8a63);
  border-radius:var(--radius-lg);padding:52px;text-align:center;color:#fff;
  border:3px solid var(--ink);margin-top:60px;
}
.final-cta h2{color:#fff;font-size:clamp(1.6rem,3.4vw,2.3rem);}
.final-cta p{color:rgba(255,255,255,0.92);max-width:520px;margin:0 auto 26px;}

/* Footer */
.site-footer{
  background:var(--ink);color:#C7D3F0;padding:48px 0 26px;margin-top:0;
}
.footer-grid{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;
  padding-bottom:28px;border-bottom:1px solid rgba(255,255,255,0.15);
}
.footer-brand{font-family:var(--font-display);font-weight:700;color:#fff;font-size:1.1rem;}
.footer-links{display:flex;gap:22px;flex-wrap:wrap;font-size:.88rem;}
.footer-links a{text-decoration:none;color:#C7D3F0;}
.footer-links a:hover{color:#fff;}
.footer-bottom{
  padding-top:20px;font-size:.8rem;color:#8CA0D6;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
}

/* Thank-you page */
.ty-wrap{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  padding:40px 20px;
  background:radial-gradient(circle at 20% 20%, rgba(255,197,61,0.3), transparent 40%),
             radial-gradient(circle at 85% 80%, rgba(62,160,224,0.28), transparent 42%),
             var(--paper);
}
.ty-card{
  max-width:560px;width:100%;background:var(--white);border:3px solid var(--ink);
  border-radius:var(--radius-lg);padding:48px 40px;text-align:center;box-shadow:var(--shadow);
}
.ty-check{
  width:78px;height:78px;border-radius:50%;background:var(--grass);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:2.4rem;margin:0 auto 20px;
  border:3px solid var(--ink);
}
.ty-steps{text-align:left;margin:26px 0;}
.ty-step{display:flex;gap:14px;margin-bottom:16px;}
.ty-step .n{
  flex:none;width:30px;height:30px;border-radius:50%;background:var(--sun);
  border:2px solid var(--ink);display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;font-size:.85rem;
}
.ty-step p{margin:0;font-size:.94rem;color:#3A4B72;}
.ty-step strong{display:block;font-size:.96rem;color:var(--ink);}

/* Legal pages */
.legal{padding:60px 0 90px;}
.legal .container{max-width:820px;}
.legal h1{font-size:2rem;}
.legal h2{font-size:1.25rem;margin-top:34px;}
.legal p, .legal li{color:#3A4B72;font-size:.98rem;}
.legal .updated{color:#7683A6;font-size:.85rem;margin-bottom:30px;}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{order:-1;}
  .pain-grid, .feature-grid, .showcase, .testi-grid{grid-template-columns:1fr;}
  .bonus-list{grid-template-columns:1fr;}
  .section{padding:56px 0;}
  .price-card{padding:28px;}
  .final-cta{padding:36px 24px;}
}
