/* ============================================================
     1. TOKENS / VARIÁVEIS  — personalize as cores aqui
     ============================================================ */
  :root {
    --bordo:        #7c1d2b;   /* cor da equipe — bordô */
    --bordo-deep:   #5e141f;   /* bordô mais escuro (hover/sombra) */
    --bordo-bright: #a8323f;   /* bordô vivo (destaques) */
    --ink:          #141011;   /* preto quente */
    --ink-soft:     #2a2224;   /* preto suavizado p/ cards escuros */
    --paper:        #faf6f4;   /* branco quente */
    --paper-2:      #f1e9e6;   /* off-white levemente mais escuro */
    --muted:        #6f6366;   /* texto secundário sobre claro */
    --muted-light:  #c9b9bc;   /* texto secundário sobre escuro */
    --line:         rgba(20,16,17,.12);
    --line-light:   rgba(255,255,255,.14);

    --maxw: 1200px;
    --r: 14px;
    --ease: cubic-bezier(.16,.84,.44,1);
    --shadow: 0 24px 60px -28px rgba(20,16,17,.45);
    --font-display: "Playfair Display", Georgia, serif;
    --font-sans: "Archivo", system-ui, -apple-system, sans-serif;
  }

  /* ============================================================
     2. RESET / BASE
     ============================================================ */
  *, *::before, *::after { box-sizing: border-box; }
  * { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font-sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--bordo); color: #fff; }

  /* ============================================================
     3. HELPERS / TIPOGRAFIA
     ============================================================ */
  .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
  .section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

  .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700; font-size: 13px;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--bordo);
  }
  .kicker::before {
    content: ""; width: 26px; height: 2px; background: var(--bordo); display: inline-block;
  }
  .kicker.light { color: var(--bordo-bright); }
  .kicker.center { justify-content: center; }

  h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.03; letter-spacing: -.01em; }
  .display {
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    font-weight: 900; line-height: .98; letter-spacing: -.02em;
  }
  .h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
  .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.6; max-width: 56ch; }
  .lead.light { color: var(--muted-light); }
  .mark { color: var(--bordo); font-style: italic; }
  .section-head { max-width: 60ch; }
  .section-head .h2 { margin-top: 16px; }
  .section-head.center { margin-inline: auto; text-align: center; }
  .section-head.center .kicker { justify-content: center; }

  /* ============================================================
     4. BOTÕES / CTA
     ============================================================ */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem;
    letter-spacing: .01em;
    padding: 18px 30px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
    line-height: 1; text-align: center;
  }
  .btn svg { width: 20px; height: 20px; flex: none; }
  .btn-primary {
    background: var(--bordo); color: #fff;
    box-shadow: 0 16px 34px -14px rgba(124,29,43,.7);
  }
  .btn-primary:hover { background: var(--bordo-bright); transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(124,29,43,.8); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
  .btn-ghost.on-dark { color: #fff; border-color: var(--line-light); }
  .btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
  .btn-lg { padding: 22px 38px; font-size: 1.12rem; }

  /* ============================================================
     5. HEADER / NAV
     ============================================================ */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,246,244,.82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
  }
  header.nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .brand { display: flex; align-items: center; }
  .brand-logo { height: 40px; width: auto; display: block; }
  @media (max-width: 480px) { .brand-logo { height: 34px; } }
  .nav-links { display: flex; align-items: center; gap: 22px; padding-left: 24px; }
  .nav-links a.link { font-weight: 600; font-size: .96rem; color: var(--ink); opacity: .82; transition: opacity .2s; white-space: nowrap; }
  .nav-links a.link:hover, .nav-links a.link.is-active { opacity: 1; color: var(--bordo); }
  .nav-cta { padding: 13px 24px; font-size: .95rem; }

  /* botão hambúrguer (só no mobile) */
  .nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; flex: none; }
  .nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, top .25s; }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

  @media (max-width: 980px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
      position: absolute; top: 76px; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      padding: 8px clamp(20px, 5vw, 40px) 20px;
      background: var(--paper); border-bottom: 1px solid var(--line);
      box-shadow: 0 18px 30px -22px rgba(20,16,17,.45);
      max-height: calc(100vh - 76px); overflow-y: auto;
      display: none;
    }
    .nav-links.open { display: flex; animation: navDrop .26s var(--ease); }
    @keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
    .nav-links a.link { display: block; padding: 15px 2px; font-size: 1.06rem; opacity: 1; border-bottom: 1px solid var(--line); }
    .nav-links .nav-cta { margin-top: 16px; text-align: center; padding: 15px 24px; }
  }

  /* ============================================================
     6. HERO
     ============================================================ */
  .hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .hero::before { /* faixa diagonal decorativa */
    content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
    background: linear-gradient(135deg, var(--bordo-deep), var(--bordo) 60%, transparent);
    transform: skewX(-12deg); opacity: .55; z-index: 0;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(120% 90% at 80% 10%, rgba(168,50,63,.28), transparent 55%);
  }
  .hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 70px);
    align-items: center;
    padding-block: clamp(64px, 9vw, 120px);
  }
  .hero-eyebrow { color: var(--bordo-bright); }
  .hero h1 { margin: 22px 0 32px; }
  .hero .lead { color: var(--muted-light); max-width: 50ch; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
  .hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; border-top: 1px solid var(--line-light); padding-top: 28px; }
  .hero-proof .stat { padding-right: 34px; margin-right: 34px; border-right: 1px solid var(--line-light); }
  .hero-proof .stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
  .hero-proof .num { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; color: #fff; }
  .hero-proof .lbl { font-size: .82rem; color: var(--muted-light); letter-spacing: .04em; margin-top: 7px; }

  .hero-media { position: relative; }
  .hero-media .placeholder { aspect-ratio: 4/5; border-radius: 20px; }
  .hero-badge {
    position: absolute; left: -22px; bottom: 30px;
    background: var(--paper); color: var(--ink); border-radius: 14px;
    padding: 16px 20px; box-shadow: var(--shadow); max-width: 230px;
    display: flex; gap: 12px; align-items: center;
  }
  .hero-badge .medal { width: 42px; height: 42px; border-radius: 50%; background: var(--bordo); flex: none; display: grid; place-items: center; color: #fff; }
  .hero-badge .medal svg { width: 22px; height: 22px; }
  .hero-badge .t { font-weight: 800; font-size: .95rem; line-height: 1.15; }
  .hero-badge .s { font-size: .78rem; color: var(--muted); margin-top: 3px; }
  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { max-width: 440px; }
    .hero-badge { left: auto; right: 16px; }
  }

  /* ============================================================
     7. PLACEHOLDER DE IMAGEM (substituir por <img>)
     ============================================================ */
  .placeholder {
    width: 100%; border-radius: var(--r); position: relative; overflow: hidden;
    background:
      repeating-linear-gradient(135deg, rgba(124,29,43,.08) 0 14px, rgba(124,29,43,.03) 14px 28px),
      var(--paper-2);
    border: 1px dashed rgba(124,29,43,.35);
    display: grid; place-items: center; min-height: 180px;
  }
  .placeholder.dark {
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 14px, rgba(255,255,255,.02) 14px 28px),
      var(--ink-soft);
    border-color: rgba(255,255,255,.22);
  }
  .placeholder .ph-label {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
    color: var(--bordo); background: rgba(250,246,244,.85);
    padding: 7px 12px; border-radius: 8px; text-align: center; max-width: 80%;
  }
  .placeholder.dark .ph-label { color: var(--muted-light); background: rgba(20,16,17,.55); }

  /* ============================================================
     8. BENEFÍCIOS
     ============================================================ */
  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
  .benefit {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  }
  .benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
  .benefit .ico { width: 54px; height: 54px; border-radius: 13px; background: var(--bordo); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
  .benefit .ico svg { width: 26px; height: 26px; }
  .benefit h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
  .benefit p { color: var(--muted); font-size: .98rem; }
  @media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     8b. HERO PHOTO + SOBRE O SENSEI
     ============================================================ */
  .hero-photo { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }

  .sensei { background: var(--paper-2); }
  .sensei-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
  .sensei-photo { position: relative; }
  .sensei-photo .frame { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); border: 1px solid var(--line); }
  .sensei-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
  .sensei-photo .cap { position: absolute; right: -16px; bottom: 28px; display: flex; align-items: center; gap: 12px; background: var(--paper); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow); max-width: 235px; }
  .sensei-photo .cap .medal { width: 42px; height: 42px; border-radius: 50%; background: var(--bordo); color: #fff; flex: none; display: grid; place-items: center; }
  .sensei-photo .cap .medal svg { width: 21px; height: 21px; }
  .sensei-photo .cap .t { font-weight: 800; font-size: .92rem; line-height: 1.15; }
  .sensei-photo .cap .s { font-size: .76rem; color: var(--muted); margin-top: 2px; }
  .sensei-body .h2 { margin-top: 14px; }
  .sensei-body p { color: var(--muted); margin-top: 18px; max-width: 56ch; }
  .sensei-body .creds { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
  .cred { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 17px; font-weight: 600; font-size: .92rem; }
  .cred svg { width: 16px; height: 16px; color: var(--bordo); flex: none; }
  .principles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .principle { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
  .principle .jp { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .principle .jp small { display: block; font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bordo); margin-bottom: 4px; }
  .principle p { color: var(--muted); font-size: .92rem; margin-top: 8px; max-width: none; }
  .principles-note { font-size: .88rem; color: var(--muted); margin-top: 16px; }
  @media (max-width: 860px) {
    .sensei-grid { grid-template-columns: 1fr; }
    .sensei-photo { max-width: 420px; }
    .principles { grid-template-columns: 1fr; }
  }

  /* GALERIA DAS AULAS */
  .gallery { background: var(--paper-2); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
  .gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--r); box-shadow: var(--shadow); }
  @media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
  @media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     9. COMO FUNCIONA
     ============================================================ */
  .how { background: var(--paper-2); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .step { position: relative; padding-top: 14px; }
  .step .n { font-family: var(--font-display); font-weight: 900; font-size: 4.2rem; line-height: .8; color: var(--bordo); opacity: .9; }
  .step h3 { font-size: 1.5rem; margin: 16px 0 10px; }
  .step p { color: var(--muted); }
  .step::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 4px; background: var(--bordo); border-radius: 2px; }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

  /* ============================================================
     10. PROVA SOCIAL / DEPOIMENTOS
     ============================================================ */
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .testi {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 32px 30px; display: flex; flex-direction: column; gap: 22px;
  }
  .testi .quote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; font-weight: 500; }
  .testi .quote::before { content: "“"; color: var(--bordo); font-size: 2.4rem; line-height: 0; vertical-align: -.35em; margin-right: 4px; }
  .testi .result { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--bordo); }
  .testi .person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
  .testi .avatar { width: 52px; height: 52px; border-radius: 50%; flex: none; min-height: 52px; }
  .testi .person .name { font-weight: 700; font-size: .98rem; }
  .testi .person .role { font-size: .85rem; color: var(--muted); }
  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

  .cta-band { text-align: center; margin-top: 64px; }
  .cta-band .btn { margin-top: 4px; }

  /* ============================================================
     11. OFERTA / PREÇO
     ============================================================ */
  .offer { background: var(--ink); color: var(--paper); }
  .offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
  .offer .lead { color: var(--muted-light); }
  .incl { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
  .incl li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.05rem; }
  .incl .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--bordo); flex: none; display: grid; place-items: center; margin-top: 1px; }
  .incl .ck svg { width: 14px; height: 14px; color: #fff; }
  .offer-card {
    background: linear-gradient(170deg, var(--ink-soft), #1d1719);
    border: 1px solid var(--line-light); border-radius: 20px; padding: 40px 38px;
    box-shadow: var(--shadow);
  }
  .offer-card .tag { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bordo-bright); }
  .offer-card .price-line { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; line-height: 1.1; margin: 14px 0 8px; }
  .offer-card .price-sub { color: var(--muted-light); font-size: .98rem; }
  .offer-card .divider { height: 1px; background: var(--line-light); margin: 26px 0; }
  .turmas { display: grid; gap: 10px; }
  .turma { display: flex; justify-content: space-between; gap: 16px; font-size: .96rem; padding: 11px 0; border-bottom: 1px dashed var(--line-light); }
  .turma:last-child { border-bottom: 0; }
  .turma .age { color: var(--muted-light); font-weight: 600; }
  .turma .nm { font-weight: 600; }
  .offer-card .btn { width: 100%; justify-content: center; margin-top: 28px; }
  .offer-card .micro { text-align: center; font-size: .82rem; color: var(--muted-light); margin-top: 14px; }
  @media (max-width: 860px) { .offer-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     12. UNIDADES
     ============================================================ */
  .units-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
  .unit { border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; background: #fff; transition: border-color .3s, transform .3s var(--ease); }
  .unit:hover { transform: translateY(-4px); border-color: var(--bordo); }
  .unit .pin { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-2); color: var(--bordo); display: grid; place-items: center; margin-bottom: 16px; }
  .unit .pin svg { width: 20px; height: 20px; }
  .unit h3 { font-size: 1.15rem; font-weight: 800; line-height: 1.2; }
  .unit p { font-size: .9rem; color: var(--muted); margin-top: 6px; }
  @media (max-width: 900px) { .units-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .units-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     13. GARANTIA
     ============================================================ */
  .guarantee { }
  .guarantee-box {
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: auto 1fr; gap: clamp(26px, 4vw, 48px); align-items: center;
    box-shadow: var(--shadow);
  }
  .guarantee-seal {
    width: 130px; height: 130px; border-radius: 50%; flex: none;
    background: var(--bordo); color: #fff; display: grid; place-items: center; text-align: center;
    border: 5px solid var(--bordo-bright); box-shadow: inset 0 0 0 3px var(--bordo-deep);
    font-family: var(--font-display); font-weight: 800; line-height: 1.05;
  }
  .guarantee-seal span { font-size: 1.5rem; }
  .guarantee-seal small { display: block; font-family: var(--font-sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-top: 4px; opacity: .85; }
  .guarantee-box h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
  .guarantee-box p { color: var(--muted); margin-top: 12px; max-width: 60ch; }
  @media (max-width: 640px) { .guarantee-box { grid-template-columns: 1fr; text-align: center; justify-items: center; } .guarantee-box p { margin-inline: auto; } }

  /* ============================================================
     14. FAQ
     ============================================================ */
  .faq { background: var(--paper-2); }
  .faq-list { max-width: 820px; margin: 50px auto 0; display: grid; gap: 14px; }
  .faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
  .faq-item[open] { border-color: var(--bordo); }
  .faq-item summary {
    cursor: pointer; list-style: none; padding: 24px 28px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-family: var(--font-display); font-weight: 700; font-size: 1.18rem;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .plus { width: 26px; height: 26px; flex: none; position: relative; transition: transform .3s var(--ease); }
  .faq-item .plus::before, .faq-item .plus::after { content: ""; position: absolute; background: var(--bordo); border-radius: 2px; }
  .faq-item .plus::before { top: 50%; left: 0; right: 0; height: 3px; transform: translateY(-50%); }
  .faq-item .plus::after { left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); transition: opacity .3s; }
  .faq-item[open] .plus { transform: rotate(180deg); }
  .faq-item[open] .plus::after { opacity: 0; }
  .faq-item .answer { padding: 0 28px 26px; color: var(--muted); font-size: 1.02rem; }

  /* ============================================================
     15. CTA FINAL
     ============================================================ */
  .final { background: var(--bordo); color: #fff; position: relative; overflow: hidden; text-align: center; }
  .final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -20%, rgba(255,255,255,.16), transparent 60%); }
  .final::after { content: ""; position: absolute; bottom: -30%; left: -10%; width: 50%; height: 120%; background: linear-gradient(135deg, var(--bordo-deep), transparent); transform: skewX(-12deg); opacity: .6; }
  .final .inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; }
  .final .scarcity { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.22); padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
  .final .scarcity .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6); } 70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
  .final h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 26px 0 18px; }
  .final p { font-size: 1.18rem; opacity: .92; max-width: 56ch; margin-inline: auto; }
  .final .btn-primary { background: #fff; color: var(--bordo); box-shadow: 0 20px 44px -16px rgba(0,0,0,.5); margin-top: 38px; }
  .final .btn-primary:hover { background: var(--paper); color: var(--bordo-deep); }
  .final .secondary { margin-top: 26px; font-size: .98rem; opacity: .9; }
  .final .secondary a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

  /* ============================================================
     16. FOOTER
     ============================================================ */
  footer { background: var(--ink); color: var(--muted-light); padding-block: 64px 36px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  footer .foot-logo { height: 48px; width: auto; display: block; margin-bottom: 20px; }
  footer .f-about { max-width: 38ch; font-size: .95rem; }
  footer h4 { color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
  footer ul { list-style: none; display: grid; gap: 10px; font-size: .95rem; }
  footer a.f-link:hover { color: #fff; }
  .foot-bottom { border-top: 1px solid var(--line-light); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }
  @media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

  /* ============================================================
     17. ANIMAÇÕES DE SCROLL
     ============================================================ */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .final .scarcity .dot { animation: none; }
  }

  /* WhatsApp floating button */
  .wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
    display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
    transition: transform .25s var(--ease); 
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float svg { width: 32px; height: 32px; }

  /* ============================================================
     18. EVENTOS (página dedicada)
     ============================================================ */
  .ev-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .ev-hero::before { content:""; position:absolute; top:-25%; right:-12%; width:55%; height:150%; background: linear-gradient(135deg, var(--bordo-deep), var(--bordo) 60%, transparent); transform: skewX(-12deg); opacity:.5; z-index:0; }
  .ev-hero::after { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(120% 90% at 85% 0%, rgba(168,50,63,.25), transparent 55%); }
  .ev-hero .wrap { position:relative; z-index:2; padding-block: clamp(70px,10vw,128px); }
  .ev-hero h1 { margin: 22px 0 26px; max-width: 17ch; }
  .ev-hero .lead { color: var(--muted-light); max-width: 56ch; }
  .ev-hero .hero-cta { display:flex; flex-wrap:wrap; gap:16px; margin-top:36px; }

  .events-list { display: grid; gap: clamp(46px, 7vw, 86px); margin-top: 58px; }
  .event { border-top: 2px solid var(--line); padding-top: clamp(28px,4vw,44px); }
  .event-top { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap: 18px 28px; }
  .event-top .ev-name { max-width: 30ch; }
  .event-top .ev-name .h2 { margin-top: 10px; font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
  .event-meta { display:flex; flex-wrap:wrap; gap:10px; }
  .chip { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-weight:600; font-size:.9rem; }
  .chip svg { width:15px; height:15px; color:var(--bordo); flex:none; }
  .event .desc { color: var(--muted); margin-top:18px; max-width: 72ch; font-size:1.05rem; }
  .event-photos { display:grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 166px; gap:14px; margin-top:28px; }
  .event-photos image-slot, .event-photos img { width:100%; height:100%; display:block; border-radius:var(--r); box-shadow: var(--shadow); }
  .event-photos img { object-fit:cover; }
  .event-photos .big { grid-column: span 2; grid-row: span 2; }
  @media (max-width: 760px){
    .event-photos { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
    .event-photos .big { grid-column: span 2; grid-row: span 2; }
  }

  /* ============================================================
     19. HORÁRIOS & TURMAS (página dedicada)
     ============================================================ */
  .sched-units { display: grid; gap: clamp(44px, 6vw, 76px); margin-top: 56px; }
  .sched-unit { }
  .sched-unit .su-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 26px; padding-bottom: 22px; border-bottom: 2px solid var(--line); margin-bottom: 30px; }
  .sched-unit .su-title { display: flex; align-items: center; gap: 16px; }
  .sched-unit .su-pin { width: 46px; height: 46px; border-radius: 12px; background: var(--bordo); color: #fff; display: grid; place-items: center; flex: none; }
  .sched-unit .su-pin svg { width: 23px; height: 23px; }
  .sched-unit .su-title h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.05; }
  .sched-unit .su-title .loc { font-size: .92rem; color: var(--muted); margin-top: 3px; }
  .su-note { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,29,43,.08); color: var(--bordo); border: 1px solid rgba(124,29,43,.2); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: .82rem; }
  .su-note svg { width: 15px; height: 15px; flex: none; }

  .sched-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
  .sched-grid { width: 100%; min-width: 600px; border-collapse: separate; border-spacing: 6px; }
  .sched-grid th, .sched-grid td { text-align: center; }
  .sched-grid thead th { font-family: var(--font-sans); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 6px 4px 10px; }
  .sched-grid thead th.tcol { text-align: left; }
  .sched-grid .timecell { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); white-space: nowrap; text-align: left; padding-right: 14px; width: 86px; }
  .sched-grid td.cls { border-radius: 11px; padding: 13px 10px; background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: .92rem; line-height: 1.15; position: relative; }
  .sched-grid td.empty { background: transparent; border: 1px dashed rgba(20,16,17,.1); color: transparent; }
  .sched-grid td.cls::before { content:""; position:absolute; left:0; top:10px; bottom:10px; width:4px; border-radius:0 4px 4px 0; background: var(--cls, var(--bordo)); }
  .cls-baby  { --cls:#d98a4f; }
  .cls-k1    { --cls:#a8323f; }
  .cls-k2    { --cls:#3a7d6e; }
  .cls-base  { --cls:#4a6b8a; }
  .cls-adult { --cls:#2a2224; }

  .sched-simple { display: flex; flex-wrap: wrap; gap: 14px; }
  .sched-pill { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 24px; box-shadow: var(--shadow); }
  .sched-pill .day { font-family: var(--font-sans); font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .sched-pill .time { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
  .sched-pill .cname { font-weight: 700; color: var(--bordo); }
  .sched-pill .div { width: 1px; align-self: stretch; background: var(--line); }

  .school-only { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 0; }
  .school-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 28px; }
  .school-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .school-card .loc { font-size: .9rem; color: var(--muted); margin: 4px 0 12px; }
  .school-card p { font-size: .95rem; color: var(--muted); }
  .school-card .tag { display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:.8rem; color: var(--bordo); margin-bottom: 14px; }
  .school-card .tag svg { width: 15px; height: 15px; }

  .legend { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; padding: 22px 26px; background: var(--paper-2); border-radius: var(--r); }
  .legend .li { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; }
  .legend .sw { width: 14px; height: 14px; border-radius: 4px; background: var(--cls, var(--bordo)); flex: none; }
  .legend .li small { color: var(--muted); font-weight: 500; }

  @media (max-width: 620px) {
    .school-only { grid-template-columns: 1fr; }
    .sched-unit .su-head { flex-direction: column; align-items: flex-start; }
  }

.testi .avatar.initials{width:52px;height:52px;min-height:52px;flex:none;border-radius:50%;display:grid;place-items:center;background:var(--bordo,#6b1230);color:#fff;font-family:Archivo,system-ui,sans-serif;font-weight:700;font-size:.9rem;letter-spacing:.02em}
