    :root {
      --bg:        #08080a;
      --bg-2:      #0d0d10;
      --bg-card:   #141416;
      --red:       #e10600;
      --red-2:     #ff2318;
      --red-glow:  rgba(225, 6, 0, .55);
      --text:      #f4f4f6;
      --text-mut:  #a2a2ab;
      --text-dim:  #6b6b74;
      --border:    #242428;
      --success:   #22c55e;
      --radius:    14px;
      --max:       1240px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    .display { font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .01em; line-height: .98; }
    .cond    { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em; }
    .red { color: var(--red-2); }
    .wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 48px; padding: 0 26px;
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px;
      text-transform: uppercase; letter-spacing: .08em;
      border-radius: 10px; border: 1.5px solid transparent; cursor: pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px); }
    .btn-primary {
      background: linear-gradient(180deg, var(--red-2), var(--red));
      color: #fff; box-shadow: 0 8px 26px -8px var(--red-glow);
    }
    .btn-primary:hover { box-shadow: 0 12px 34px -6px var(--red-glow); transform: translateY(-2px); }
    .btn-ghost {
      background: rgba(255,255,255,.03); color: #fff; border-color: rgba(255,255,255,.22);
    }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
    .btn-wa { background: #25d366; color: #05300f; }
    .btn-wa:hover { background: #2ce874; transform: translateY(-2px); }

    /* ---------- Header (nav-bar preta) ---------- */
    header {
      position: sticky; top: 0; z-index: 60;
      backdrop-filter: blur(12px);
      background: rgba(8,8,10,.72);
      border-bottom: 1px solid var(--border);
      transition: background .3s, box-shadow .3s;
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
    .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .brand img { height: 46px; width: auto; filter: drop-shadow(0 2px 10px rgba(225,6,0,.45)); }
    .brand-txt { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 20px; line-height: 1; color: var(--text); }
    .brand-txt small { display: block; font-size: 10px; letter-spacing: .35em; color: var(--red-2); font-weight: 600; }
    .menu { display: flex; align-items: center; gap: 30px; }
    .menu a {
      font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 15px;
      text-transform: uppercase; letter-spacing: .1em; color: var(--text-mut);
      position: relative; transition: color .2s;
    }
    .menu a:hover { color: #fff; }
    .menu a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--red); transition: width .25s; }
    .menu a:hover::after { width: 100%; }
    .nav-cta { display: flex; align-items: center; gap: 14px; }
    .hamburger { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }

    /* Mobile drawer */
    .drawer { position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .25s; }
    .drawer.open { opacity: 1; pointer-events: auto; }
    .drawer-panel {
      position: absolute; top: 0; right: 0; height: 100%; width: min(80vw, 320px);
      background: var(--bg-2); border-left: 1px solid var(--border);
      transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column; padding: 24px; gap: 6px;
    }
    .drawer.open .drawer-panel { transform: translateX(0); }
    .drawer-panel a { padding: 14px 8px; border-bottom: 1px solid var(--border); font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; font-size: 18px; }
    .drawer-close { align-self: flex-end; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; margin-bottom: 10px; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative; min-height: 640px; display: flex; align-items: center;
      background: #060606;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: url('/assets/hero.jpg') no-repeat center right / cover;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(90deg, #060606 3%, rgba(6,6,6,.82) 17%, rgba(6,6,6,.28) 33%, rgba(6,6,6,0) 47%),
        linear-gradient(0deg, rgba(6,6,6,.7), rgba(6,6,6,0) 45%);
    }
    /* copy encostada mais à esquerda; libera espaço p/ as imagens das modalidades */
    .hero .wrap { position: relative; z-index: 2; max-width: none; margin: 0; padding: 60px 20px; padding-left: clamp(20px, 5vw, 88px); }
    .hero-content { max-width: 560px; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .28em; font-size: 13px; color: var(--red-2); font-weight: 600; margin-bottom: 20px; }
    .hero-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); }
    .hero h1 { font-size: clamp(38px, 6vw, 72px); max-width: 11ch; margin-bottom: 22px; }
    .hero h1 .red { display: inline; }
    .hero p.sub { font-size: clamp(15px, 2vw, 18px); color: var(--text-mut); max-width: 40ch; margin-bottom: 34px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .play-ico { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--red); display: inline-flex; align-items: center; justify-content: center; }

    /* Modalidade chips over hero bottom (desktop) */
    .hero-chips { position: absolute; z-index: 2; bottom: 22px; left: 0; right: 0; }
    .hero-chips .wrap { display: none; }

    /* ---------- Section shells ---------- */
    section { position: relative; }
    .sec-pad { padding: 84px 0; }
    .sec-head { text-align: center; margin-bottom: 52px; }
    .sec-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
    .sec-head p { color: var(--text-mut); margin-top: 12px; max-width: 52ch; margin-inline: auto; }
    .kicker { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .3em; font-size: 13px; color: var(--red-2); font-weight: 600; display: block; margin-bottom: 10px; }

    /* ---------- Modalidades ---------- */
    #modalidades { background: linear-gradient(180deg, #060606, var(--bg)); }
    .mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .mod-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 30px 18px; text-align: center; position: relative; overflow: hidden;
      transition: transform .2s, border-color .2s, box-shadow .25s;
    }
    .mod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; transition: opacity .25s; }
    .mod-card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.5); box-shadow: 0 18px 40px -20px var(--red-glow); }
    .mod-card:hover::before { opacity: 1; }
    .mod-ico { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--red-2); }
    .mod-ico svg { width: 100%; height: 100%; }
    .mod-card h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .mod-card p { font-size: 13.5px; color: var(--text-mut); line-height: 1.5; min-height: 62px; }
    .mod-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: #fff; }
    .mod-more svg { width: 14px; transition: transform .2s; }
    .mod-card:hover .mod-more svg { transform: translateX(4px); }
    .mod-card:hover .mod-more { color: var(--red-2); }

    /* ---------- Planos ---------- */
    #planos { background: linear-gradient(180deg, var(--bg), #060606); }
    .per-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -28px 0 42px; }
    .per-tab {
      min-height: 44px; padding: 0 20px; border-radius: 10px; cursor: pointer;
      background: rgba(255,255,255,.03); border: 1.5px solid var(--border); color: var(--text-mut);
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
      text-transform: uppercase; letter-spacing: .1em;
      transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    }
    .per-tab:hover { color: #fff; border-color: rgba(255,255,255,.3); }
    .per-tab.on {
      background: linear-gradient(180deg, var(--red-2), var(--red)); color: #fff;
      border-color: transparent; box-shadow: 0 8px 26px -10px var(--red-glow);
    }
    .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .plan-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 26px 22px; display: flex; flex-direction: column; position: relative; overflow: hidden;
      transition: transform .2s, border-color .2s, box-shadow .25s;
    }
    .plan-card:hover { transform: translateY(-4px); border-color: rgba(225,6,0,.5); box-shadow: 0 18px 40px -22px var(--red-glow); }
    .plan-head { display: flex; align-items: center; gap: 12px; }
    .plan-ico { width: 38px; height: 38px; color: var(--red-2); flex: none; }
    .plan-ico svg { width: 100%; height: 100%; }
    .plan-card h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 19px; font-weight: 700; line-height: 1.15; }
    .plan-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
    .plan-tag {
      position: absolute; top: 16px; right: 16px; padding: 4px 10px; border-radius: 999px;
      background: rgba(225,6,0,.14); border: 1px solid rgba(225,6,0,.45); color: var(--red-2);
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px;
      text-transform: uppercase; letter-spacing: .14em;
    }
    .plan-rows { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 4px; flex: 1; }
    .plan-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
    .plan-row:last-child { border-bottom: none; padding-bottom: 0; }
    .plan-freq { font-size: 13.5px; color: var(--text-mut); }
    .plan-eco { display: block; font-size: 11.5px; color: var(--success); margin-top: 3px; }
    .plan-price { font-family: 'Anton', sans-serif; font-size: 27px; line-height: 1; letter-spacing: .01em; white-space: nowrap; }
    .plan-price small { font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
    .plan-note { font-size: 12px; color: var(--text-dim); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
    .plan-cta {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 44px; margin-top: 18px; border-radius: 10px;
      background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.16); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
      text-transform: uppercase; letter-spacing: .1em; transition: border-color .2s, background .2s;
    }
    .plan-cta:hover { border-color: var(--red-2); background: rgba(225,6,0,.1); color: #fff; }
    .plan-card.consulta .plan-price {
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px;
      text-transform: uppercase; letter-spacing: .1em; color: var(--red-2); margin-bottom: 8px;
    }
    .plan-contato { font-size: 13px; color: var(--text-mut); margin-top: 18px; flex: 1; }
    .plan-contato b { color: var(--text); font-weight: 600; }
    .planos-foot { text-align: center; color: var(--text-dim); font-size: 12.5px; margin-top: 30px; max-width: 62ch; margin-inline: auto; }

    /* ---------- Estrutura ---------- */
    #estrutura { background: var(--bg-2); }
    .estrutura-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: center; }
    .estrutura-copy h2 { font-size: clamp(28px, 4vw, 42px); margin: 10px 0 18px; }
    .estrutura-copy p { color: var(--text-mut); margin-bottom: 28px; max-width: 42ch; }
    .gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 14px; }
    .g-tile {
      border-radius: 12px; border: 1px solid var(--border); position: relative; overflow: hidden;
      background: linear-gradient(135deg, #16161a, #0d0d10);
      display: flex; align-items: center; justify-content: center; color: var(--text-dim);
    }
    .g-tile.tall { grid-row: span 2; }
    .g-tile.wide { grid-column: span 2; grid-row: span 2; }
    .g-tile span { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .g-tile span svg { width: 32px; height: 32px; opacity: .5; }
    .g-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .g-tile.photo::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(6,6,6,.7), transparent 50%); }
    .g-tile .ph-tag { position: absolute; left: 12px; bottom: 12px; z-index: 2; padding: 7px 13px; background: rgba(8,8,10,.6); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: #fff; letter-spacing: .12em; }

    /* ---------- CTA band ---------- */
    .cta-band { background: #ffffff; position: relative; overflow: hidden; border-top: 3px solid var(--red); border-bottom: 1px solid #e7e7ec; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 12% 50%, rgba(225,6,0,.06), transparent 55%); }
    .cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 40px 0; }
    .cta-title { display: flex; align-items: center; gap: 20px; }
    .cta-title img { height: 58px; border-radius: 12px; background: #0c0c0e; padding: 6px; box-shadow: 0 6px 18px -6px rgba(225,6,0,.4); }
    .cta-title h2 { font-size: clamp(24px, 3.4vw, 38px); color: #14151c; }
    .cta-title h2 .dark { color: var(--red); }
    .cta-feats { display: flex; gap: 26px; flex-wrap: wrap; }
    .cta-feat { display: flex; align-items: center; gap: 12px; }
    .cta-feat .fi { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(225,6,0,.35); background: rgba(225,6,0,.06); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
    .cta-feat .fi svg { width: 20px; height: 20px; }
    .cta-feat b { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .05em; color: #14151c; font-size: 15px; }
    .cta-feat small { color: #6b6c76; font-size: 12.5px; }
    .btn-onred { background: linear-gradient(180deg, var(--red-2), var(--red)); color: #fff; box-shadow: 0 8px 26px -8px var(--red-glow); }
    .btn-onred:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px var(--red-glow); }

    /* ---------- Formulário ---------- */
    #matricula { background: radial-gradient(circle at 50% 0%, #14100f, var(--bg) 60%); }
    .form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
    .form-copy .kicker { margin-bottom: 14px; }
    .form-copy h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 18px; }
    .form-copy p { color: var(--text-mut); margin-bottom: 26px; }
    .form-copy ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .form-copy li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
    .form-copy li .ck { width: 26px; height: 26px; border-radius: 50%; background: rgba(225,6,0,.15); color: var(--red-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .form-copy li .ck svg { width: 15px; }

    .form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 34px; box-shadow: 0 30px 80px -40px var(--red-glow); }
    .form-card h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
    .form-card .fsub { color: var(--text-mut); font-size: 14px; margin-bottom: 24px; }
    .field { margin-bottom: 16px; }
    .field label { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--text-mut); margin-bottom: 7px; }
    .field label .req { color: var(--red-2); }
    .field input, .field select, .field textarea {
      width: 100%; background: #0c0c0e; border: 1.5px solid var(--border); border-radius: 10px;
      padding: 13px 14px; color: var(--text); font-family: inherit; font-size: 16px;
      transition: border-color .2s, box-shadow .2s;
    }
    .field textarea { resize: vertical; min-height: 84px; }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.18);
    }
    .field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a2a2ab' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-card .btn-primary { width: 100%; margin-top: 8px; }
    .form-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 14px; }
    .form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14px; align-items: center; gap: 10px; }
    .form-msg.show { display: flex; }
    .form-msg.ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.4); color: #7ee2a3; }
    .form-msg.err { background: rgba(225,6,0,.12); border: 1px solid rgba(225,6,0,.4); color: #ff8a80; }

    /* ---------- Footer ---------- */
    footer { background: #060607; border-top: 1px solid var(--border); padding: 54px 0 30px; }
    .foot-grid { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 34px; align-items: start; }
    .foot-item { display: flex; gap: 14px; }
    .foot-item .fi { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--red-2); flex-shrink: 0; }
    .foot-item .fi svg { width: 20px; }
    .foot-item h4 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
    .foot-item p { font-size: 14px; color: var(--text); line-height: 1.5; }
    .foot-brand { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
    .foot-brand img { height: 54px; }
    .socials { display: flex; gap: 10px; }
    .socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-mut); transition: all .2s; }
    .socials a:hover { color: #fff; border-color: var(--red); background: rgba(225,6,0,.12); }
    .foot-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--text-dim); font-size: 13px; }

    /* Floating WhatsApp */
    .wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 55; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6); animation: pulse 2.4s infinite; }
    .wa-float svg { width: 30px; height: 30px; color: #fff; }
    @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

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

    /* ---------- Responsive ---------- */
    @media (max-width: 1000px) {
      .menu, .nav-cta .btn-wa { display: none; }
      .hamburger { display: inline-flex; }
      .mod-grid { grid-template-columns: repeat(2, 1fr); }
      .plan-grid { grid-template-columns: repeat(2, 1fr); }
      .estrutura-grid { grid-template-columns: 1fr; gap: 32px; }
      .form-grid { grid-template-columns: 1fr; gap: 36px; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .foot-brand { align-items: flex-start; grid-column: 1 / -1; flex-direction: row; justify-content: space-between; width: 100%; }
    }
    @media (max-width: 640px) {
      .sec-pad { padding: 60px 0; }
      .hero { min-height: 560px; }
      .hero-bg { background-position: center right -60px; }
      .hero-bg::after { background: linear-gradient(90deg, #060606 22%, rgba(6,6,6,.55) 60%, rgba(6,6,6,.15) 100%), linear-gradient(0deg, rgba(6,6,6,.9), rgba(6,6,6,0) 55%); }
      .hero-actions .btn { flex: 1; }
      .mod-grid { grid-template-columns: 1fr; }
      .mod-card p { min-height: 0; }
      .plan-grid { grid-template-columns: 1fr; }
      .per-tabs { margin: -12px 0 32px; }
      .per-tab { flex: 1 1 40%; padding: 0 12px; }
      .field-row { grid-template-columns: 1fr; }
      .form-card { padding: 24px; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .cta-band .btn { width: 100%; }
      .foot-grid { grid-template-columns: 1fr; }
      .brand-txt { font-size: 17px; }
    }
/* ==========================================================================
   Cards de modalidade (viraram links pras páginas próprias)
   ========================================================================== */
.mod-card { display: flex; flex-direction: column; align-items: center; }
.mod-faixa {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .16em;
  font-size: 11px; color: var(--text-dim); margin-bottom: 10px;
}
.mod-preco { display: block; margin-top: 12px; font-size: 12.5px; color: var(--text-mut); }
.mod-preco b { font-family: 'Anton', sans-serif; font-size: 18px; color: var(--text); letter-spacing: .02em; }
.mod-preco.consulta {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; font-weight: 700; color: var(--red-2);
}
.mod-card .mod-more { margin-top: auto; padding-top: 14px; }

/* ==========================================================================
   Formulário inteligente (chips + config por modalidade + estimativa)
   ========================================================================== */
.pk-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
label.chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  background: rgba(255,255,255,.03); border: 1.5px solid var(--border); color: var(--text-mut);
  font-size: 13.5px; font-weight: 500; transition: border-color .18s, background .18s, color .18s;
}
label.chip:hover { border-color: rgba(255,255,255,.32); color: #fff; }
label.chip input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; pointer-events: none; }
label.chip .chip-ico { width: 18px; height: 18px; color: var(--text-dim); flex: none; }
label.chip .chip-ico svg { width: 100%; height: 100%; }
label.chip:has(input:checked) {
  background: rgba(225,6,0,.12); border-color: var(--red); color: #fff; font-weight: 600;
}
label.chip:has(input:checked) .chip-ico { color: var(--red-2); }
label.chip input:focus-visible { outline: none; }
label.chip:has(input:focus-visible) { border-color: var(--red-2); box-shadow: 0 0 0 3px rgba(225,6,0,.25); }

.pk-vazio { font-size: 13.5px; color: var(--text-dim); padding: 18px 0 4px; }
.pk-configs { display: flex; flex-direction: column; gap: 12px; }
.pk-box { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: 12px; padding: 16px 16px 14px; }
.pk-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.pk-head b { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 17px; }
.pk-valor { font-family: 'Anton', sans-serif; font-size: 22px; line-height: 1; white-space: nowrap; }
.pk-valor small { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color: var(--text-dim); }
.pk-consulta {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  font-size: 12px; font-weight: 700; color: var(--red-2); white-space: nowrap;
}
.pk-line { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 10px; }
.pk-lbl {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: 11px; color: var(--text-dim); min-width: 128px;
}
.pk-opts { display: flex; flex-wrap: wrap; gap: 6px; }
label.pk-opt {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  min-height: 38px; padding: 0 12px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1.5px solid var(--border); color: var(--text-mut);
  font-size: 13px; transition: border-color .18s, background .18s, color .18s;
}
label.pk-opt:hover { border-color: rgba(255,255,255,.3); color: #fff; }
label.pk-opt input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; pointer-events: none; }
label.pk-opt.on { background: rgba(225,6,0,.14); border-color: var(--red); color: #fff; font-weight: 600; }
.pk-fixa { font-size: 13.5px; color: var(--text-mut); }
.pk-eco { font-size: 12px; color: var(--success); margin-top: 12px; }
.pk-extra { font-size: 12px; color: var(--text-dim); margin-top: 8px; }
.pk-info { font-size: 13px; color: var(--text-mut); line-height: 1.55; }
.pk-info b { color: var(--text); }
.pk-wa {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px;
  margin-top: 12px; padding: 0 18px; border-radius: 9px; background: #25d366; color: #05300f;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em;
}
.pk-wa:hover { background: #2ce874; }
.pk-total {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 14px; padding: 14px 16px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(225,6,0,.16), rgba(225,6,0,.06));
  border: 1px solid rgba(225,6,0,.4);
}
.pk-total > span {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .16em;
  font-size: 12px; color: var(--text-mut);
}
.pk-total b { font-family: 'Anton', sans-serif; font-size: 26px; line-height: 1; }
.pk-total b small { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: var(--text-mut); }
.pk-total em { font-style: normal; font-size: 11.5px; color: var(--text-dim); width: 100%; }

.periodo-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.periodo-opts label.pk-opt { min-height: 44px; }

/* ==========================================================================
   Página de modalidade
   ========================================================================== */
.m-hero { position: relative; padding: 128px 0 72px; overflow: hidden; border-bottom: 1px solid var(--border); }
.m-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .38; }
.m-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, #060606 18%, rgba(6,6,6,.6) 62%, rgba(6,6,6,.25) 100%),
              linear-gradient(0deg, var(--bg), rgba(6,6,6,0) 60%);
}
.m-hero .wrap { position: relative; }
.m-back {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; font-weight: 700; color: var(--text-mut);
}
.m-back:hover { color: var(--red-2); }
.m-back svg { width: 14px; }
.m-hero h1 { font-size: clamp(34px, 6vw, 62px); max-width: 16ch; }
.m-hero .m-sub { color: var(--text-mut); margin-top: 16px; max-width: 46ch; font-size: 16.5px; }
.m-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.m-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border); font-size: 13px; color: var(--text-mut);
}
.m-pill b { color: var(--text); font-weight: 600; }
.m-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.m-benef { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.m-benef-list { display: flex; flex-direction: column; gap: 20px; }
.m-benef-item { display: flex; gap: 14px; }
.m-benef-num {
  flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(225,6,0,.12); border: 1px solid rgba(225,6,0,.4); color: var(--red-2);
  font-family: 'Anton', sans-serif; font-size: 15px;
}
.m-benef-item h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .05em; font-size: 18px; margin-bottom: 4px; }
.m-benef-item p { font-size: 14px; color: var(--text-mut); line-height: 1.6; }
.m-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-foto { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 10; }
.m-foto:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.m-foto img { width: 100%; height: 100%; object-fit: cover; }
.m-fotos-nota { grid-column: 1 / -1; font-size: 11.5px; color: var(--text-dim); text-align: center; }

.m-estrutura-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.m-slot {
  border-radius: 12px; border: 1px dashed var(--border); aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #16161a, #0d0d10);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 12px;
}
.m-slot span {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  font-size: 14px; font-weight: 700; color: var(--text-mut);
}
.m-slot small { font-size: 10.5px; color: var(--text-dim); letter-spacing: .04em; }
.m-slot svg { width: 22px; height: 22px; color: var(--text-dim); }

.m-tabela-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.m-tabela { width: 100%; border-collapse: collapse; min-width: 520px; }
.m-tabela th, .m-tabela td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.m-tabela thead th {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; color: var(--text-dim); font-weight: 700; background: rgba(255,255,255,.02);
}
.m-tabela tbody th { text-align: left; font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }
.m-tabela td { font-family: 'Anton', sans-serif; font-size: 21px; letter-spacing: .01em; }
.m-tabela td small { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-dim); font-weight: 500; display: block; margin-top: 2px; letter-spacing: 0; }
.m-tabela tr:last-child th, .m-tabela tr:last-child td { border-bottom: none; }
.m-tabela .melhor { color: var(--red-2); }
.m-extras { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.m-extra-tag {
  padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.03); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-mut);
}
.m-extra-tag b { color: var(--text); }
.m-obs { font-size: 13px; color: var(--text-dim); margin-top: 16px; }

.m-consulta-card {
  border: 1px solid rgba(225,6,0,.4); border-radius: var(--radius); padding: 32px;
  background: linear-gradient(180deg, rgba(225,6,0,.1), rgba(225,6,0,.02)); text-align: center;
}
.m-consulta-card h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 24px; }
.m-consulta-card p { color: var(--text-mut); margin: 10px auto 22px; max-width: 46ch; font-size: 14.5px; }
.m-consulta-card .tel { font-family: 'Anton', sans-serif; font-size: 30px; display: block; margin-bottom: 4px; }

@media (max-width: 1000px) {
  .m-benef { grid-template-columns: 1fr; gap: 32px; }
  .m-estrutura-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .m-hero { padding: 104px 0 52px; }
  .pk-lbl { min-width: 100%; }
  .pk-total b { font-size: 22px; }
  .m-fotos { grid-template-columns: 1fr; }
  .m-foto:first-child { aspect-ratio: 16 / 10; }
}

/* Estados que valem tanto pro que o JS monta quanto pro markup estático. */
label.pk-opt:has(input:checked) { background: rgba(225,6,0,.14); border-color: var(--red); color: #fff; font-weight: 600; }
label.pk-opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(225,6,0,.25); }
.field-hint { font-size: 12px; color: var(--text-dim); margin: -4px 0 10px; }

/* Tabela de valores: valor nunca quebra em duas linhas; no mobile ela rola. */
.m-tabela th, .m-tabela td { white-space: nowrap; }
.m-tabela-dica { display: none; font-size: 11.5px; color: var(--text-dim); text-align: center; margin-top: 10px; }
@media (max-width: 760px) { .m-tabela-dica { display: block; } }

/* Lista de modalidades no rodapé — navegação e SEO. */
.foot-mods { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; padding: 26px 0 4px; border-top: 1px solid var(--border); margin-top: 30px; }
.foot-mods-lbl { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; color: var(--text-dim); width: 100%; }
.foot-mods a { font-size: 13px; color: var(--text-mut); }
.foot-mods a:hover { color: var(--red-2); }

/* ----------------------------------------------------------- Ficha em modal
   Quem chega pelo link que o chatbot mandou (?o=wa) já decidiu se matricular:
   veio da conversa, com nome e telefone preenchidos. Mostrar antes a coluna
   "Comece hoje / Sua evolução começa aqui" é vender de novo para quem já
   comprou — e no celular essa coluna aparece ACIMA do formulário, então a
   pessoa caía numa tela sem nenhum campo à vista.

   O card da matrícula é o mesmo elemento de sempre, só movido para dentro
   deste overlay pelo site.js — assim o picker de modalidades, os listeners e o
   pré-preenchimento continuam valendo. */
.ficha-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px 40px;
  background: rgba(8, 8, 10, .82);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  overflow-y: auto;
  animation: fichaIn .18s ease-out;
}
@keyframes fichaIn { from { opacity: 0 } to { opacity: 1 } }

.ficha-modal .ficha-box { width: 100%; max-width: 560px; position: relative; }
/* O card já tem sombra e borda próprias; dentro do overlay a margem some. */
.ficha-modal .form-card { margin: 0; }

.ficha-fechar {
  position: absolute; top: -14px; right: -6px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-mut); font-size: 20px; line-height: 1; cursor: pointer;
}
.ficha-fechar:hover { color: #fff; border-color: var(--red); }

body.ficha-aberta { overflow: hidden; }

@media (max-width: 560px) {
  .ficha-modal { padding: 16px 12px 32px; }
  .ficha-modal .form-card { padding: 24px 20px; }
  .ficha-fechar { top: -10px; right: -4px; width: 34px; height: 34px; }
}
