@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

  :root {
    --orange: #F5773D;
    --orange-dark: #DD5F24;
    --peach: #FEF3EE;
    --slate: #4A5565;
    --slate-dark: #333B47;
    --ink: #171717;
    --body-text: #333333;
    --muted: #6B7280;
    --bg-gray: #F9FAFB;
    --bg-gray2: #EFEFEF;
    --border: #E7E5E0;
    --white: #FFFFFF;
    --radius-lg: 20px;
    --radius-pill: 999px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--body-text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
  }
  h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; margin: 0; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  section { padding: 76px 0; }
  img, svg { display: block; }
  a { text-decoration: none; }

  .preview-banner {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13.5px;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .preview-banner b { color: #FFD27A; }

  /* ---------- kicker pill ---------- */
  .kicker-pill {
    display: inline-block;
    background: var(--peach);
    color: var(--orange-dark);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .3px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
  }
  .kicker-pill.on-dark { background: rgba(255,255,255,0.14); color: #fff; }
  .center { text-align: center; }
  .section-head { max-width: 720px; margin: 0 auto 44px; }
  .section-head h2 { font-size: 2rem; color: var(--ink); font-weight: 700; margin-bottom: 10px; }
  .section-head p.sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

  /* ---------- buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
  }
  .btn-solid { background: var(--orange); color: #fff; }
  .btn-outline-dark { background: transparent; color: var(--slate); border: 2px solid var(--slate); }
  .btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
  .btn-solid-slate { background: var(--slate); color: #fff; }
  .btn svg { width: 16px; height: 16px; }

  /* ---------- header ---------- */
  header.site {
    position: sticky; top: 34px; z-index: 500;
    background: #fff; border-bottom: 1px solid var(--border);
  }
  .header-inner {
    max-width: 1120px; margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo { display: flex; align-items: center; gap: 10px; }
  .logo .word { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--slate); }
  .logo .word .dot { color: var(--orange); }
  .logo .divider { width: 1px; height: 30px; background: var(--border); }
  .logo .sub { font-size: 10px; line-height: 1.3; color: var(--muted); letter-spacing: .4px; font-weight: 600; }
  nav.main { display: flex; align-items: center; gap: 30px; }
  nav.main a.navlink { color: var(--slate-dark); font-weight: 500; font-size: .95rem; }
  nav.main a.navlink.active { color: var(--orange); font-weight: 600; }
  .header-ctas { display: flex; gap: 12px; }
  .header-ctas .btn { padding: 10px 20px; font-size: .85rem; }
  @media (max-width: 900px) { nav.main, .header-ctas { display: none; } }

  /* ---------- hero (dark navy, matches /mentoria pattern) ---------- */
  .hero {
    background: linear-gradient(180deg, var(--slate) 0%, var(--slate-dark) 100%);
    color: #fff;
    padding: 90px 0 70px;
  }
  .hero .wrap { text-align: center; }
  .hero h1 { font-size: 2.9rem; color: #fff; font-weight: 700; max-width: 780px; margin: 0 auto 20px; line-height: 1.2; }
  .hero p.sub { font-size: 1.15rem; max-width: 660px; margin: 0 auto 28px; color: #E4E7EC; }
  .urgency-strip {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(245,119,61,0.16);
    border: 1px solid rgba(245,119,61,0.45);
    border-radius: 14px;
    padding: 14px 22px;
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: .95rem;
    text-align: left;
    color: #FFE3D2;
  }
  .urgency-strip svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--orange); }
  .hero-checks { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin: 30px 0 34px; }
  .hero-checks .item { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: #fff; font-weight: 500; }
  .hero-checks svg { width: 18px; height: 18px; color: var(--orange); }
  .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .hero-trust { margin-top: 26px; font-size: .82rem; color: #AEB4BF; }

  /* ---------- icon circle cards (Diferenciais pattern) ---------- */
  .icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .icon-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
  @media (max-width: 860px) { .icon-grid, .icon-grid.cols-2 { grid-template-columns: 1fr; } }
  .icon-card {
    background: #fff; border: 1px solid var(--border); border-radius: 18px;
    padding: 34px 28px; text-align: center;
  }
  .icon-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .icon-circle svg { width: 28px; height: 28px; color: #fff; }
  .icon-card h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
  .icon-card p, .icon-card ul { color: var(--muted); font-size: .92rem; margin: 0; padding: 0; list-style: none; }
  .icon-card ul li { margin-bottom: 6px; text-align: left; padding-left: 18px; position: relative; }
  .icon-card ul li::before { content: "•"; color: var(--orange); position: absolute; left: 0; font-weight: 700; }
  .icon-card .note { display:block; margin-top: 14px; font-style: italic; color: var(--orange-dark); font-size: .85rem; }

  section.alt { background: var(--bg-gray); }

  /* ---------- stat banner ---------- */
  .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
  @media (max-width: 860px) { .stat-row { grid-template-columns: repeat(2,1fr); } }
  .stat-chip { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 16px; text-align: center; }
  .stat-chip .num { font-size: 1.7rem; font-weight: 800; color: var(--orange); font-family:'Poppins',sans-serif; }
  .stat-chip .label { font-size: .82rem; color: var(--muted); margin-top: 4px; }
  .big-stat {
    background: var(--slate); color: #fff; border-radius: 20px; padding: 44px; text-align: center;
  }
  .big-stat .num { font-size: 3rem; font-weight: 800; color: var(--orange); font-family:'Poppins',sans-serif; }
  .big-stat p { max-width: 560px; margin: 10px auto 0; color: #E4E7EC; }

  /* ---------- compare panel ---------- */
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
  @media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
  .compare-card { border-radius: 18px; padding: 30px; }
  .compare-card.bad { background: #FCF4F2; border: 1px solid #F3D9D3; }
  .compare-card.good { background: var(--peach); border: 1px solid #FBD9C6; }
  .compare-card h4 { font-size: 1rem; margin-bottom: 16px; }
  .compare-card.bad h4 { color: #B3402A; }
  .compare-card.good h4 { color: var(--orange-dark); }
  .compare-card ul { list-style: none; padding: 0; margin: 0; }
  .compare-card li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .93rem; align-items: flex-start; }
  .compare-card svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
  .compare-card.bad svg { color: #C6483A; }
  .compare-card.good svg { color: var(--orange); }
  .quote-highlight {
    font-size: 1.25rem; font-style: italic; color: var(--slate-dark);
    border-left: 4px solid var(--orange); padding-left: 22px; margin: 34px 0 0;
    max-width: 720px;
  }

  /* ---------- numbered pillar cards ---------- */
  .pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 760px) { .pillar-grid { grid-template-columns: 1fr; } }
  .pillar-card {
    background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px;
    display: flex; gap: 18px; align-items: flex-start;
  }
  .pillar-num {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
    background: var(--peach); color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem;
  }
  .pillar-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
  .pillar-card ul { padding: 0; margin: 8px 0 0; list-style: none; }
  .pillar-card li { position: relative; padding-left: 16px; font-size: .9rem; color: var(--muted); margin-bottom: 5px; }
  .pillar-card li::before { content:"•"; color: var(--orange); position: absolute; left:0; }
  .pillar-card .note { margin-top: 10px; font-style: italic; color: var(--orange-dark); font-size: .85rem; display:block; }

  /* ---------- gallery (sala multissensorial) ---------- */
  .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; }
  @media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
  .gallery-item {
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    aspect-ratio: 3/4; background: var(--bg-gray);
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-caption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; font-style: italic; }

  /* ---------- checklist plain ---------- */
  .check-list { list-style: none; padding: 0; margin: 0; max-width: 640px; }
  .check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 1rem; }
  .check-list svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

  /* ---------- case highlight ---------- */
  .case-box {
    background: linear-gradient(135deg, var(--peach), #fff);
    border: 1px solid #FBD9C6; border-radius: 22px;
    padding: 52px; text-align: center;
  }
  .case-box h3 { font-size: 1.6rem; color: var(--slate-dark); line-height: 1.4; font-weight: 700; max-width: 780px; margin: 0 auto; }
  .case-box .quote-mark { font-size: 3rem; color: var(--orange); font-family: 'Poppins',sans-serif; line-height: 1; margin-bottom: 6px; }

  /* ---------- founders ---------- */
  .founders { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  @media (max-width: 760px) { .founders { grid-template-columns: 1fr; } }
  .founder-card { border: 1px solid var(--border); border-radius: 20px; padding: 30px; }
  .founder-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
  .avatar-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--slate); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem;
    flex-shrink: 0;
  }
  .founder-card h3 { font-size: 1.15rem; color: var(--ink); }
  .founder-card .role { font-size: .85rem; color: var(--muted); margin-top: 2px; }
  .founder-card ul { padding: 0; margin: 0 0 16px; list-style: none; }
  .founder-card li { position: relative; padding-left: 16px; font-size: .9rem; color: var(--muted); margin-bottom: 6px; }
  .founder-card li::before { content:"•"; color: var(--orange); position: absolute; left:0; }
  .founder-card .kids {
    font-size: .82rem; color: var(--muted); border-top: 1px dashed var(--border);
    padding-top: 12px; font-style: italic;
  }

  /* ---------- plans ---------- */
  .plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 20px; }
  @media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
  .plan-card {
    background: #fff; border: 1px solid var(--border); border-radius: 22px;
    padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  }
  .plan-card.featured { border: 2px solid var(--orange); box-shadow: 0 12px 32px rgba(245,119,61,0.18); }
  .ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700;
    padding: 6px 16px; border-radius: var(--radius-pill); white-space: nowrap;
  }
  .plan-card h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 4px; }
  .plan-card .plan-tag { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
  .plan-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
  .plan-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; margin-bottom: 12px; color: var(--body-text); }
  .plan-card li svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
  .plan-card .btn { justify-content: center; width: 100%; }

  /* ---------- dark CTA band ---------- */
  .cta-band { background: var(--slate); color: #fff; text-align: center; }
  .cta-band h2 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
  .cta-band p { max-width: 620px; margin: 0 auto 30px; color: #E4E7EC; }
  .step-chips { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
  .step-chips .chip {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill); padding: 10px 20px; font-size: .88rem; display:flex; align-items:center; gap:8px;
  }
  .step-chips .chip .n { background: var(--orange); color:#fff; width:20px; height:20px; border-radius:50%; font-size:.72rem; display:flex; align-items:center; justify-content:center; font-weight:700; }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
  .faq-item h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: 8px; display:flex; gap:10px; align-items:flex-start; }
  .faq-item h4 .q-mark { color: var(--orange); font-family:'Poppins',sans-serif; font-weight:800; flex-shrink:0; }
  .faq-item p { margin: 0 0 0 26px; color: var(--muted); font-size: .93rem; }

  /* ---------- final form ---------- */
  .form-section { background: var(--bg-gray); }
  .contact-card {
    background: #fff; border: 1px solid var(--border); border-radius: 22px;
    padding: 44px; max-width: 560px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    text-align: center;
  }
  .wa-icon {
    width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 20px;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
  }
  .wa-icon svg { width: 34px; height: 34px; color: #fff; }
  .msg-bubble {
    background: var(--bg-gray); border: 1px solid var(--border); border-radius: 14px;
    padding: 16px 20px; font-size: .92rem; color: var(--slate-dark); font-style: italic;
    max-width: 460px; margin: 0 auto 22px; text-align: left;
  }
  .contact-card .btn { width: 100%; justify-content: center; }
  .copy-hint { font-size: .8rem; color: var(--muted); margin-top: 14px; }
  .copy-hint.copied { color: var(--orange-dark); font-weight: 600; }

  /* ---------- footer ---------- */
  footer.site { background: #fff; border-top: 1px solid var(--border); padding: 56px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-grid h4 { font-size: .95rem; color: var(--ink); margin-bottom: 16px; }
  .footer-grid p, .footer-grid a { color: var(--muted); font-size: .88rem; }
  .footer-grid .flink { display: block; margin-bottom: 10px; }
  .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .88rem; color: var(--muted); }
  .footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
  .footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0; text-align: center;
    font-size: .8rem; color: var(--muted);
  }
  .region-banner {
    background: var(--peach); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 22px 0; text-align: center;
  }
  .region-banner p { margin: 0; font-size: .95rem; color: var(--slate-dark); }
  .region-banner a { color: var(--orange-dark); font-weight: 700; }
  .region-banner a:hover { text-decoration: underline; }
