*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --base:   #F0F8FC;
      --lime:   #CBE25B;
      --teal:   #11B2AA;
      --yellow: #FFDB5E;
      --sky:    #AFE2F2;
      --purple: #9B5CB8;
      --orange: #FE9D33;
      --dark:   #1A1A2E;
    }
    body {
      background: #e2e8ec;
      font-family: 'Nunito', sans-serif;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 100vh;
    }
    .phone-frame {
      width: 390px;
      min-height: 100vh;
      background: var(--base);
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 60px rgba(0,0,0,0.15);
    }

    /* ── URGENCY BAR ── */
    .urgency-bar {
      position: sticky; top: 0; width: 100%;
      background: linear-gradient(90deg,#f59e0b,#ef4444);
      color: #fff; text-align: center;
      font-size: 11.5px; font-weight: 800;
      padding: 8px 16px; z-index: 9999;
      letter-spacing: .02em;
      display: flex; align-items: center;
      justify-content: center; gap: 6px;
    }
    .ub-dias {
      background: rgba(0,0,0,.2);
      border-radius: 20px; padding: 2px 8px; font-size: 11px;
    }

    /* ── NAV (sem CTA) ── */
    nav {
      display: flex; justify-content: center; align-items: center;
      padding: 12px 20px 0;
      background: var(--base);
      position: relative; z-index: 10;
    }
    .logo img { height: 72px; }

    /* ── HERO ── */
    .hero { padding: 8px 20px 40px; position: relative; overflow: hidden; }
    .blob { position: absolute; border-radius: 50%; filter: blur(45px); pointer-events: none; }
    .blob-1 { width:200px;height:200px;background:var(--lime);top:-40px;right:-60px;opacity:.35; }
    .blob-2 { width:160px;height:160px;background:var(--sky);top:120px;left:-50px;opacity:.35; }
    .blob-3 { width:120px;height:120px;background:var(--yellow);top:300px;right:-20px;opacity:.4; }

    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--yellow); color: var(--dark);
      font-weight: 800; font-size: 11px;
      padding: 5px 12px; border-radius: 50px;
      letter-spacing: .04em; text-transform: uppercase;
      margin-bottom: 14px; margin-top: 20px;
      animation: fadeDown .5s ease both;
    }
    h1 {
      font-family: 'Fredoka One', cursive;
      font-size: 34px; line-height: 1.12;
      color: var(--dark); margin-bottom: 16px;
      animation: fadeUp .55s .1s ease both;
      position: relative; z-index: 2;
    }
    h1 em {
      font-style: normal; color: var(--purple);
      position: relative; display: inline-block;
    }
    h1 em::after {
      content: ''; position: absolute;
      bottom: 2px; left: 0; width: 100%; height: 6px;
      background: var(--lime); border-radius: 4px;
      z-index: -1; transform: skewX(-4deg);
    }
    .sub {
      font-size: 15px; font-weight: 600; color: #444;
      line-height: 1.6; margin-bottom: 24px;
      animation: fadeUp .55s .2s ease both;
      position: relative; z-index: 2;
    }
    .sub strong { color: var(--teal); font-weight: 800; }

    .hero-img-wrap {
      width: 100%; display: flex; justify-content: center;
      margin: 16px 0 20px; position: relative; z-index: 3;
    }
    .hero-section-img { width: 100%; height: auto; display: block; }

    /* proof strip */
    .proof-strip {
      display: flex; align-items: center; gap: 10px;
      background: white; border-radius: 14px;
      padding: 12px 14px; margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      animation: fadeUp .55s .4s ease both;
      position: relative; z-index: 2;
    }
    .avatars { display: flex; }
    .avatar {
      width: 30px; height: 30px; border-radius: 50%;
      border: 2px solid white; margin-left: -8px;
      overflow: hidden; flex-shrink: 0;
    }
    .avatar:first-child { margin-left: 0; }
    .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .proof-text strong { display: block; font-size: 12px; font-weight: 800; color: var(--dark); }
    .proof-text span { font-size: 11px; font-weight: 600; color: #888; }

    .cta-block { animation: fadeUp .55s .45s ease both; position: relative; z-index: 2; }
    .cta-main {
      display: block; width: 100%;
      background: var(--purple); color: white;
      text-align: center;
      font-family: 'Fredoka One', cursive;
      font-size: 20px; padding: 18px 20px;
      border-radius: 18px; text-decoration: none;
      box-shadow: 0 6px 24px rgba(155,92,184,.4);
      position: relative; overflow: hidden;
      transition: transform .15s;
    }
    .cta-main:active { transform: scale(.97); }
    .cta-main::after {
      content: ''; position: absolute;
      top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
      animation: shimmer 2.5s 1.2s infinite;
    }
    .cta-arrow { display: inline-block; margin-left: 6px; animation: nudge 1.5s 2s infinite ease-in-out; }
    .cta-sub { text-align: center; font-size: 12px; font-weight: 700; color: #999; margin-top: 10px; }
    .cta-sub span { color: var(--teal); }

    .deco-dots { display: flex; justify-content: center; gap: 6px; padding: 20px 0 4px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; }
    .d1{background:var(--purple)} .d2{background:var(--teal)} .d3{background:var(--lime)}
    .d4{background:var(--orange)} .d5{background:var(--yellow)} .d6{background:var(--sky)}

    /* ── BLOCO CLARO (seções 2-3-4) ── */
    .bloco-claro { background: var(--base); position: relative; overflow: hidden; }
    .bc-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(55px); }
    .bc-b1{width:280px;height:280px;background:var(--purple);opacity:.07;top:-80px;right:-80px;}
    .bc-b2{width:220px;height:220px;background:var(--teal);opacity:.08;top:300px;left:-80px;}
    .bc-b3{width:200px;height:200px;background:var(--lime);opacity:.07;top:700px;right:-60px;}
    .bc-b4{width:240px;height:240px;background:var(--sky);opacity:.09;bottom:80px;left:-60px;}

    /* ── SEÇÃO DOR ── */
    .section-dor {
      background: transparent; padding: 48px 24px;
      position: relative; overflow: visible;
    }
    .section-dor::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange));
    }
    .ritmo-intro {
      font-size: 14px; font-weight: 700; color: #777;
      margin-bottom: 24px; line-height: 1.5;
    }
    .ritmo-intro strong { color: var(--dark); font-weight: 800; }
    .ritmo-composicao { position: relative; margin-bottom: 12px; overflow: visible; }
    .ritmo-texto-fundo {
      display: flex; flex-direction: column; gap: 4px;
      -webkit-mask-image: linear-gradient(to bottom,rgba(0,0,0,1) 0%,rgba(0,0,0,.55) 50%,rgba(0,0,0,.15) 100%);
      mask-image: linear-gradient(to bottom,rgba(0,0,0,1) 0%,rgba(0,0,0,.55) 50%,rgba(0,0,0,.15) 100%);
      position: relative; z-index: 1; padding-bottom: 10px;
    }
    .ritmo-words, .ritmo-repeat { display: flex; flex-wrap: nowrap; gap: 6px; justify-content: center; }
    .ritmo-word { font-family: 'Fredoka One', cursive; font-size: 19px; line-height: 1.15; text-transform: uppercase; }
    .rw-1{color:var(--purple)} .rw-2{color:var(--teal)} .rw-3{color:var(--orange)}
    .ritmo-sep { font-family: 'Fredoka One', cursive; font-size: 19px; color: #bbb; line-height: 1.15; }
    .secao2-img { display: block; width: 100%; max-width: 420px; height: auto; margin: -100px auto 0; position: relative; z-index: 2; }
    .ritmo-caption { margin-top: 16px; font-size: 14px; font-weight: 600; color: #555; line-height: 1.6; border-left: 3px solid var(--lime); padding-left: 12px; }
    .dor-text { font-size: 15px; font-weight: 600; color: #3a3a3a; line-height: 1.65; margin-bottom: 40px; position: relative; z-index: 2; }
    .hl-purple { color: var(--purple); font-weight: 800; }
    .card-pior {
      background: #FFF8EC; border-left: 4px solid var(--orange);
      border-radius: 0 16px 16px 0; padding: 16px 16px 16px 18px;
      margin: 0 0 22px; position: relative; z-index: 2;
    }
    .pior-label { font-family: 'Fredoka One', cursive; font-size: 15px; color: var(--orange); margin-bottom: 8px; }
    .card-pior p { font-size: 14.5px; font-weight: 600; color: #444; line-height: 1.6; }
    .minutos { display: flex; gap: 2px; align-items: baseline; margin: 10px 0; }
    .min-item { font-family: 'Fredoka One', cursive; font-size: 26px; color: var(--orange); }
    .min-sep { font-size: 18px; color: #ccc; font-weight: 700; margin: 0 2px; }
    .card-insight {
      background: var(--dark); border-radius: 20px;
      padding: 20px 18px; position: relative; z-index: 2; overflow: hidden;
    }
    .card-insight::after { content: '🧠'; position: absolute; right: 14px; top: 14px; font-size: 36px; opacity: .12; }
    .insight-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--lime); margin-bottom: 10px; }
    .card-insight p { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.65; }
    .metafora { margin-top: 12px !important; font-size: 13px !important; font-weight: 700 !important; color: var(--yellow) !important; font-style: italic; }

    /* ── SEÇÃO ATENÇÃO ── */
    .section-atencao { background: transparent; padding: 32px 24px 40px; position: relative; }
    .dor-gancho { margin-top: 0; margin-bottom: 24px; text-align: center; position: relative; z-index: 2; }
    .dor-gancho p { font-family: 'Fredoka One', cursive; font-size: 20px; color: var(--dark); line-height: 1.3; }
    .secao3-img { display: block; width: 80%; max-width: 320px; height: auto; margin: 0 auto 24px; }
    .atencao-text { font-size: 15px; font-weight: 600; color: #555; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 2; }
    .atencao-text strong { color: var(--dark); font-weight: 800; }
    .frase-impacto { font-family: 'Fredoka One', cursive; font-size: 22px; color: var(--teal); margin: 0 0 24px; position: relative; z-index: 2; line-height: 1.25; }

    /* card virada (método) */
    .card-virada {
      background: var(--dark); border-radius: 20px;
      padding: 24px 20px; text-align: center;
      position: relative; z-index: 2; margin-bottom: 20px; overflow: hidden;
    }
    .card-virada::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime));
    }
    .virada-eyebrow { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--lime); margin-bottom: 12px; }
    .card-virada > p { font-size: 16px; font-weight: 800; line-height: 1.45; margin-bottom: 10px; color: #fff; }
    .card-virada > p span { color: var(--lime); }
    .metodo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
    .metodo-item {
      background: rgba(255,255,255,.06); border-radius: 12px;
      padding: 12px 10px; display: flex; align-items: center; gap: 8px;
    }
    .metodo-num {
      width: 26px; height: 26px; border-radius: 50%;
      font-family: 'Fredoka One', cursive; font-size: 13px;
      color: var(--dark); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .metodo-label { font-size: 12.5px; font-weight: 800; color: rgba(255,255,255,.85); line-height: 1.2; text-align: left; }
    .bloco-mundo {
      background: rgba(155,92,184,.06); border-left: 3px solid var(--teal);
      border-radius: 0 12px 12px 0; padding: 16px 16px 16px 18px;
      margin: 0 0 22px; position: relative; z-index: 2;
    }
    .bloco-mundo p { font-size: 14.5px; font-weight: 600; color: #555; line-height: 1.65; }
    .bloco-mundo p strong { color: var(--dark); }

    /* ── SEÇÃO PRODUTO ── */
    .section-produto { background: transparent; padding: 12px 24px 52px; position: relative; }
    .protagonista-plain { margin: 0 0 28px; position: relative; z-index: 2; }
    .prot-line1 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--teal); line-height: 1.2; margin-bottom: 2px; }
    .prot-line2 { font-family: 'Fredoka One', cursive; font-size: 34px; color: var(--purple); line-height: 1.1; }
    .produto-voce {
      background: #fff; border-radius: 20px;
      padding: 20px 18px; position: relative; z-index: 2;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
    }
    .voce-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 10px; }
    .voce-destaque { font-family: 'Fredoka One', cursive; font-size: 19px; color: var(--dark); line-height: 1.25; margin-bottom: 12px; }
    .voce-destaque span { color: var(--orange); }
    .produto-voce p { font-size: 14px; font-weight: 600; color: #555; line-height: 1.65; }
    .secao4-img { display: block; width: 100%; max-width: 420px; height: auto; margin: 20px auto; }

    /* ── STATS BLOCK ── */
    .stats-block { padding: 28px 24px; background: #fff; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
    .stats-block.dark { background: var(--dark); border-color: rgba(255,255,255,.06); }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { border-radius: 16px; padding: 16px 14px; text-align: center; background: rgba(17,178,170,.07); border: 1px solid rgba(17,178,170,.15); }
    .dark .stat-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
    .stat-num { font-family: 'Fredoka One', cursive; font-size: 28px; color: var(--teal); line-height: 1; margin-bottom: 6px; }
    .dark .stat-num { color: #4ade80; }
    .stat-desc { font-size: 11px; font-weight: 700; color: #555; line-height: 1.45; }
    .dark .stat-desc { color: rgba(255,255,255,.6); }
    .stats-label { text-align: center; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 14px; }
    .dark .stats-label { color: #4ade80; }

    /* ── SEÇÃO SEMANAS (mapa) ── */
    .section-semanas {
      background: #fff; padding: 52px 0 48px;
      position: relative; overflow: hidden;
    }
    .section-semanas::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg,var(--sky),var(--lime),var(--yellow),var(--orange));
    }
    .section-semanas::after {
      content: ''; position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse at 20% 30%,rgba(255,219,94,.08) 0%,transparent 60%),
        radial-gradient(ellipse at 80% 70%,rgba(203,226,91,.07) 0%,transparent 55%),
        radial-gradient(ellipse at 50% 50%,rgba(175,226,242,.06) 0%,transparent 70%);
      pointer-events: none;
    }
    .semanas-header { padding: 0 24px; margin-bottom: 36px; position: relative; z-index: 2; }
    .semanas-header h2 { font-family: 'Fredoka One', cursive; font-size: 26px; color: var(--dark); line-height: 1.2; margin-bottom: 8px; }
    .semanas-header p { font-size: 13.5px; font-weight: 700; color: #888; line-height: 1.5; }
    .mapa-wrapper { position: relative; width: 390px; height: 620px; z-index: 2; }
    .mapa-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
    .mapa-ponto { position: absolute; display: flex; flex-direction: column; align-items: flex-start; gap: 0; z-index: 3; }
    .ponto-circulo {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; box-shadow: 0 4px 16px rgba(0,0,0,.15), 0 0 0 4px #fff;
      position: relative; flex-shrink: 0;
    }
    .pc-1{background:var(--sky)} .pc-2{background:var(--lime)} .pc-3{background:var(--yellow)} .pc-4{background:var(--orange)}
    .ponto-estrela { position: absolute; top: -8px; right: -8px; font-size: 16px; animation: spin 4s linear infinite; }
    .ponto-card {
      background: #fff; border-radius: 14px; padding: 10px 12px;
      box-shadow: 0 3px 14px rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.06);
      width: 148px; margin-top: 8px;
    }
    .ponto-semana { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
    .ps-1{color:#5aaccf} .ps-2{color:#7fac25} .ps-3{color:#c9a100} .ps-4{color:#d4711a}
    .ponto-titulo { font-family: 'Fredoka One', cursive; font-size: 14px; color: var(--dark); line-height: 1.2; margin-bottom: 4px; }
    .ponto-desc { font-size: 11.5px; font-weight: 600; color: #666; line-height: 1.5; }
    .mp-1{top:16px;left:24px} .mp-2{top:140px;left:210px} .mp-3{top:290px;left:24px} .mp-4{top:420px;left:210px}
    .mapa-deco { position: absolute; pointer-events: none; font-size: 20px; opacity: .18; z-index: 1; }
    .md-1{top:80px;right:30px;transform:rotate(15deg)} .md-2{top:230px;right:55px;transform:rotate(-10deg)} .md-3{top:370px;right:18px;transform:rotate(20deg)}
    .mapa-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.025) 1px,transparent 1px); background-size: 40px 40px; z-index: 0; }
    .semanas-fechamento {
      margin: 32px 24px 0;
      background: var(--dark); border-radius: 20px;
      padding: 24px 18px; position: relative; z-index: 2; overflow: hidden;
    }
    .semanas-fechamento::after { content: '💡'; position: absolute; right: 14px; top: 14px; font-size: 32px; opacity: .12; }
    .semanas-fechamento p { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.65; }
    .semanas-fechamento strong { color: var(--lime); font-weight: 800; }

    /* ── BEFORE/AFTER (contrast card — do index.html) ── */
    .contrast-card {
      background: #fff; border-radius: 24px; padding: 20px 16px;
      margin-bottom: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(155,92,184,.1);
      position: relative; z-index: 2;
      display: flex; align-items: stretch; overflow: hidden;
    }
    .contrast-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange));
    }
    .contrast-col { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 6px 4px; }
    .contrast-col.left { padding-right: 10px; }
    .contrast-col.right { padding-left: 10px; }
    .contrast-label { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #aaa; line-height: 1.3; height: 28px; display: flex; align-items: center; }
    .contrast-items { display: flex; flex-direction: column; gap: 5px; }
    .contrast-items span { font-size: 12.5px; font-weight: 700; color: var(--dark); border-radius: 8px; padding: 7px 8px; display: flex; align-items: center; min-height: 34px; }
    .left .contrast-items span { background: rgba(155,92,184,.08); }
    .right .contrast-items span { background: rgba(17,178,170,.10); }
    .contrast-verdict { font-size: 10.5px; font-weight: 800; border-radius: 50px; padding: 4px 10px; align-self: flex-start; margin-top: 2px; }
    .contrast-verdict.bad { background: rgba(155,92,184,.12); color: var(--purple); }
    .contrast-verdict.good { background: rgba(17,178,170,.15); color: var(--teal); }
    .contrast-divider { display: flex; align-items: center; justify-content: center; width: 30px; flex-shrink: 0; position: relative; }
    .contrast-divider::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255,255,255,.12); }
    .vs-circle { width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: 'Fredoka One', cursive; font-size: 10px; color: var(--dark); position: relative; z-index: 1; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

    /* ── DEPOIMENTOS ── */
    .section-depoimentos { background: var(--base); padding: 52px 0 48px; position: relative; overflow: hidden; }
    .section-depoimentos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .depo-header { padding: 0 24px; margin-bottom: 28px; }
    .depo-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.2; margin-bottom: 6px; }
    .depo-header p { font-size: 13px; font-weight: 700; color: #888; }
    .depo-scroll { display: flex; flex-direction: column; gap: 14px; padding: 4px 24px 16px; }
    .depo-card { width: 100%; border-radius: 18px; padding: 18px 16px; position: relative; }
    .depo-ig { background: #fff; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 4px 18px rgba(0,0,0,.07); }
    .depo-ig-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .depo-avatar { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
    .depo-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .depo-ig-handle { font-size: 12px; font-weight: 800; color: var(--dark); }
    .depo-ig-sub { font-size: 10.5px; font-weight: 600; color: #aaa; }
    .depo-ig-heart { margin-left: auto; font-size: 16px; opacity: .5; }
    .depo-texto { font-size: 13.5px; font-weight: 600; color: #333; line-height: 1.6; }
    .depo-wa { background: #ECF8F0; border: 1px solid rgba(37,211,102,.15); box-shadow: 0 4px 18px rgba(37,211,102,.08); }
    .depo-wa-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .depo-wa-icon { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
    .depo-wa-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .depo-wa-nome { font-size: 12px; font-weight: 800; color: #128C7E; }
    .depo-wa-bolha { background: #fff; border-radius: 0 12px 12px 12px; padding: 12px; margin-bottom: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
    .depo-wa .depo-texto { font-size: 13px; color: #1a1a1a; }
    .depo-wa-time { font-size: 10px; font-weight: 700; color: #aaa; text-align: right; }

    /* ── BENEFÍCIOS ── */
    .section-beneficios { background: #fff; padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-beneficios::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--teal),var(--lime),var(--yellow),var(--orange)); }
    .ben-header { margin-bottom: 28px; position: relative; z-index: 2; }
    .ben-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.25; margin-bottom: 6px; }
    .ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; position: relative; z-index: 2; }
    .ben-card { border-radius: 18px; padding: 16px 14px; position: relative; overflow: hidden; }
    .ben-card:nth-child(1){background:rgba(175,226,242,.35)} .ben-card:nth-child(2){background:rgba(203,226,91,.3)}
    .ben-card:nth-child(3){background:rgba(255,219,94,.35)} .ben-card:nth-child(4){background:rgba(254,157,51,.2)}
    .ben-card:nth-child(5){background:rgba(155,92,184,.1)}  .ben-card:nth-child(6){background:rgba(17,178,170,.12)}
    .ben-titulo { font-family: 'Fredoka One', cursive; font-size: 14.5px; color: var(--dark); line-height: 1.3; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; }
    .ben-emoji { font-size: 24px; display: inline; margin-left: 6px; vertical-align: middle; }
    .ben-desc { font-size: 11.5px; font-weight: 600; color: #555; line-height: 1.55; }
    .ben-habilidades { background: var(--dark); border-radius: 22px; padding: 28px 20px; position: relative; z-index: 2; overflow: hidden; }
    .ben-habilidades::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .hab-intro { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
    .hab-palavras { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 20px; }
    .hab-linha { display: flex; gap: 10px; justify-content: center; }
    .hab-word { font-family: 'Fredoka One', cursive; font-size: 23px; line-height: 1.3; white-space: nowrap; }
    .hw-1{color:var(--sky)} .hw-2{color:var(--lime)} .hw-3{color:var(--yellow)} .hw-4{color:var(--orange)}
    .hab-desc { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 20px; }
    .hab-fechamento { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
    .hab-fechamento-texto { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 12px; }
    .hab-urgencia p { font-size: 14px; font-weight: 700; color: var(--lime); line-height: 1.5; }
    .secao5-img { display: block; width: 100%; max-width: 750px; height: auto; margin: 16px auto; }

    /* ── TABELA ── */
    .section-tabela { background: var(--base); padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-tabela::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .hl-underline-lime { position: relative; display: inline; }
    .hl-underline-lime::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: var(--lime); border-radius: 3px; z-index: -1; transform: skewX(-4deg); }
    .tab-header { margin-bottom: 28px; position: relative; z-index: 2; }
    .tab-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.25; }
    .tabela { width: 100%; border-radius: 18px; overflow: visible; box-shadow: 0 4px 24px rgba(0,0,0,.08); position: relative; z-index: 2; margin-bottom: 28px; }
    .tabela-inner { border-radius: 18px; overflow: hidden; }
    .tabela-header { display: grid; grid-template-columns: 1fr 1fr 1fr; background: rgba(155,92,184,.08); border-radius: 18px 18px 0 0; }
    .tabela-header div { padding: 14px 10px; font-family: 'Fredoka One', cursive; font-size: 13px; color: var(--dark); text-align: center; line-height: 1.2; }
    .tabela-header div:first-child { background: transparent; font-size: 10px; color: #bbb; display: flex; align-items: center; justify-content: center; }
    .tabela-header div:nth-child(2) { color: #aaa; font-size: 12px; border-right: 1px solid rgba(0,0,0,.06); }
    .tabela-col-attiva { background: var(--purple); border-radius: 14px 14px 0 0; margin: -2px -2px 0 -2px; padding: 16px 10px 14px !important; color: #fff !important; font-size: 15px !important; box-shadow: 0 -3px 0 rgba(0,0,0,.25) inset, 0 6px 20px rgba(155,92,184,.5), 0 -1px 0 rgba(255,255,255,.15) inset; position: relative; letter-spacing: .01em; }
    .tabela-col-attiva::before { content: '✦'; display: block; font-size: 10px; color: var(--lime); margin-bottom: 3px; opacity: .9; }
    .tabela-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(0,0,0,.05); }
    .tabela-row:last-child { border-bottom: none; }
    .tabela-row:nth-child(odd) { background: #fff; }
    .tabela-row:nth-child(even) { background: rgba(240,248,252,.8); }
    .tabela-cell { padding: 11px 10px; font-size: 12px; font-weight: 700; line-height: 1.35; text-align: center; display: flex; align-items: center; justify-content: center; }
    .tabela-cell.criterio { font-size: 11px; font-weight: 800; color: #888; text-align: left; justify-content: flex-start; border-right: 1px solid rgba(0,0,0,.05); }
    .tabela-cell.comum { color: #bbb; border-right: 1px solid rgba(0,0,0,.05); font-weight: 600; font-size: 11.5px; }
    .tabela-cell.attiva { color: var(--purple); font-weight: 800; background: rgba(155,92,184,.04); }
    .tab-cta { text-align: center; position: relative; z-index: 2; }
    .tab-cta > p:not(.cta-sub) { font-family: 'Fredoka One', cursive; font-size: 20px; color: var(--dark); margin-bottom: 14px; line-height: 1.3; }
    .tab-cta .cta-sub { font-size: 12px; font-weight: 700; color: #999; margin-top: 10px; }
    .btn-purple { display: inline-block; background: var(--purple); color: white; font-family: 'Fredoka One', cursive; font-size: 18px; padding: 16px 32px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(155,92,184,.4); width: 100%; text-align: center; position: relative; overflow: hidden; transition: transform .15s; }
    .btn-purple:active { transform: scale(.97); }
    .btn-purple::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent); animation: shimmer 2.5s 1s infinite; }

    /* ── ITENS DO KIT ── */
    .section-itens { background: var(--base); padding: 24px 24px 48px; position: relative; }
    .section-itens .item-card { box-sizing: border-box; width: 100%; margin-right: 0; }
    .itens-header { margin-bottom: 24px; position: relative; z-index: 2; }
    .itens-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.25; }
    .item-card { background: #fff; border-radius: 16px; padding: 16px; margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start; border: 1px solid rgba(0,0,0,.08); }
    .item-card > div { min-width: 0; }
    .itens-exclusivo .item-card { background: rgba(155,92,184,.05); border-color: rgba(155,92,184,.1); }
    .item-emoji { font-size: 26px; flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
    .itens-exclusivo .item-emoji { background: rgba(155,92,184,.08); box-shadow: none; }
    .item-titulo { font-family: 'Fredoka One', cursive; font-size: 15px; color: var(--dark); margin-bottom: 4px; line-height: 1.2; }
    .item-desc { font-size: 12.5px; font-weight: 600; color: #666; line-height: 1.55; }
    .itens-separador { text-align: center; margin: 28px 0 24px; position: relative; z-index: 2; padding: 0 12px; }
    .itens-separador span { font-size: 13px; font-weight: 700; color: var(--purple); line-height: 1.5; display: block; }

    /* ── DEPOIMENTOS LOTE 2 ── */
    .section-depo2 { background: #fff; padding: 28px 24px 48px; position: relative; overflow: hidden; }
    .d2-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.25; margin-bottom: 6px; }
    .d2-header p { font-size: 13px; font-weight: 700; color: #888; }
    .d2-header { margin-bottom: 28px; position: relative; z-index: 2; }
    .d2-stack { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
    .depo-wa-dark { background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.12); }
    .depo-wa-dark .depo-wa-nome { color: #4ade80; }
    .depo-wa-dark .depo-wa-bolha { background: rgba(255,255,255,.07); box-shadow: none; }
    .depo-wa-dark .depo-texto { color: rgba(255,255,255,.8); }
    .depo-wa-dark .depo-wa-time { color: rgba(255,255,255,.25); }

    /* ── STACK DE BÔNUS ── */
    .section-stack { background: var(--base); padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-stack::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .stack-card {
      background: #fff; border-radius: 20px;
      box-shadow: 0 4px 24px rgba(0,0,0,.08);
      overflow: hidden; margin-bottom: 16px;
    }
    .stack-row {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 14px; padding: 16px 18px;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .stack-row:last-child { border-bottom: none; }
    .stack-row b { display: block; font-size: 13.5px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
    .stack-row span { font-size: 12px; font-weight: 600; color: #888; line-height: 1.4; }
    .stack-val { font-size: 14px; font-weight: 800; color: var(--purple); white-space: nowrap; flex-shrink: 0; }
    .stack-total {
      background: rgba(155,92,184,.07); border: 1.5px solid rgba(155,92,184,.2);
      border-radius: 14px; padding: 14px 18px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 14px; font-weight: 700; color: var(--dark);
      margin-bottom: 16px;
    }
    .stack-total strong { color: var(--purple); font-size: 16px; }
    .urgency-badge {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.35);
      border-radius: 8px; padding: 7px 12px; margin-bottom: 16px;
      font-size: 11.5px; font-weight: 700; color: #f59e0b;
    }

    /* ── SEÇÃO PARA QUEM É ── */
    .section-pra-quem { background: var(--base); padding: 28px 24px 48px; position: relative; overflow: hidden; }
    .pq-header { margin-bottom: 28px; }
    .pq-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); line-height: 1.25; }
    .pq-card { border-radius: 20px; padding: 22px 18px; margin-bottom: 14px; }
    .pq-sim { background: rgba(17,178,170,.08); border: 1.5px solid rgba(17,178,170,.2); }
    .pq-nao { background: rgba(0,0,0,.03); border: 1.5px solid rgba(0,0,0,.08); }
    .pq-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .pq-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .pq-sim .pq-icon { background: rgba(17,178,170,.15); }
    .pq-nao .pq-icon { background: rgba(0,0,0,.06); }
    .pq-card-titulo { font-family: 'Fredoka One', cursive; font-size: 16px; line-height: 1.2; }
    .pq-sim .pq-card-titulo { color: var(--teal); }
    .pq-nao .pq-card-titulo { color: #888; }
    .pq-lista { display: flex; flex-direction: column; gap: 10px; }
    .pq-item { display: flex; gap: 10px; align-items: flex-start; }
    .pq-bullet { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
    .pq-sim .pq-bullet { background: var(--teal); color: #fff; }
    .pq-nao .pq-bullet { background: rgba(0,0,0,.12); color: #888; }
    .pq-item p { font-size: 13px; font-weight: 600; color: #333; line-height: 1.55; }
    .pq-nao .pq-item p { color: #777; }

    /* ── PRICING ── */
    .section-pricing { background: #fff; padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-pricing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .pricing-header { margin-bottom: 20px; position: relative; z-index: 2; text-align: center; }
    .pricing-header h2 { font-family: 'Fredoka One', cursive; font-size: 26px; color: var(--dark); line-height: 1.2; margin-bottom: 6px; }
    .pricing-header p { font-size: 13.5px; font-weight: 700; color: #888; }
    .pr-card-unico { border: 2px solid var(--sky); border-radius: 22px; padding: 28px 24px; background: #fff; margin-bottom: 16px; position: relative; z-index: 2; text-align: center; }
    .pr-plano-nome { font-family: 'Fredoka One', cursive; font-size: 22px; color: var(--dark); margin-bottom: 6px; }
    .pr-plano-sub { font-size: 12px; font-weight: 700; color: #aaa; margin-bottom: 16px; }
    .pr-plano-desc { font-size: 13.5px; font-weight: 600; color: #666; line-height: 1.6; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,.06); }
    .pr-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; align-items: center; }
    .pr-check-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); }
    .pr-check-item::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: rgba(17,178,170,.12); color: var(--teal); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .pr-preco { margin-bottom: 20px; text-align: center; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
    .pr-preco-valor { font-family: 'Fredoka One', cursive; font-size: 52px; color: var(--purple); line-height: 1; }
    .pr-preco-label { font-size: 12px; font-weight: 700; color: #aaa; margin-top: 4px; }
    .anchor-a { text-align: center; font-size: 12.5px; font-weight: 700; color: var(--teal); padding: 12px 16px; line-height: 1.5; display: block; }
    .btn-outline-purple { display: block; width: 100%; text-align: center; background: var(--purple); color: #fff; font-family: 'Fredoka One', cursive; font-size: 18px; padding: 16px 20px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(155,92,184,.4); position: relative; overflow: hidden; transition: transform .15s; }
    .btn-outline-purple:active { transform: scale(.97); }
    .btn-outline-purple::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent); animation: shimmer 2.5s 1s infinite; }

    /* ── INVESTIMENTO ── */
    .section-investimento { background: var(--dark); padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-investimento::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .inv-anos { position: relative; z-index: 2; margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; text-align: center; }
    .inv-ano-linha { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.3; }
    .ia-1{color:var(--sky)} .ia-2{color:var(--lime)} .ia-3{color:var(--yellow)}
    .inv-body { position: relative; z-index: 2; }
    .inv-body p { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 16px; }
    .inv-body p strong { color: rgba(255,255,255,.9); font-weight: 800; }
    .anchor-c { background: rgba(255,255,255,.07); border-radius: 14px; padding: 16px 18px; margin-bottom: 20px; text-align: center; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.7); line-height: 1.6; border: 1px solid rgba(255,255,255,.1); }
    .anchor-c strong { color: #fff; }

    /* ── GARANTIA ── */
    .section-garantia { background: var(--base); padding: 52px 24px 48px; position: relative; overflow: hidden; }
    .section-garantia::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--teal),var(--lime),var(--yellow),var(--purple)); }
    .gar-card { background: #fff; border-radius: 24px; padding: 28px 22px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.07); position: relative; overflow: hidden; }
    .gar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--teal),var(--lime)); }
    .gar-escudo { width: 64px; height: 64px; border-radius: 50%; background: rgba(17,178,170,.1); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
    .gar-titulo { font-family: 'Fredoka One', cursive; font-size: 20px; color: var(--dark); margin-bottom: 14px; }
    .gar-texto { font-size: 13.5px; font-weight: 600; color: #555; line-height: 1.65; margin-bottom: 20px; text-align: left; }
    .gar-destaque { background: rgba(155,92,184,.06); border-radius: 14px; padding: 16px; margin-bottom: 20px; }
    .gar-destaque p { font-size: 13.5px; font-weight: 600; color: #555; line-height: 1.65; text-align: left; }
    .gar-frase { font-family: 'Fredoka One', cursive; font-size: 22px; color: var(--purple); line-height: 1.3; }

    /* ── FAQ ── */
    .section-faq { background: #fff; padding: 52px 24px 48px; position: relative; }
    .section-faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal),var(--lime),var(--orange)); }
    .faq-header { margin-bottom: 24px; }
    .faq-header h2 { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--dark); }
    .faq-lista { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
    .faq-item:first-child { border-top: 1px solid rgba(0,0,0,.07); }
    .faq-pergunta { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; gap: 12px; user-select: none; }
    .faq-pergunta span { font-size: 14px; font-weight: 800; color: var(--dark); line-height: 1.4; flex: 1; }
    .faq-icone { width: 24px; height: 24px; border-radius: 50%; background: rgba(155,92,184,.1); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--purple); flex-shrink: 0; transition: transform .25s; }
    .faq-item.aberto .faq-icone { transform: rotate(45deg); }
    .faq-resposta { font-size: 13.5px; font-weight: 600; color: #555; line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
    .faq-item.aberto .faq-resposta { max-height: 400px; padding-bottom: 16px; }

    /* ── FECHAMENTO ── */
    .section-fechamento { background: var(--purple); padding: 52px 24px 56px; position: relative; overflow: hidden; text-align: center; }
    .fech-b1 { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; width: 260px; height: 260px; background: rgba(255,255,255,.08); top: -80px; right: -60px; }
    .fech-b2 { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; width: 200px; height: 200px; background: rgba(17,178,170,.2); bottom: 0; left: -60px; }
    .fech-body { position: relative; z-index: 2; }
    .fech-corpo { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; text-align: left; }
    .fech-corpo strong { color: #fff; font-weight: 800; }
    .fech-encerramento { margin-bottom: 32px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
    .fech-enc-linha1 { font-family: 'Fredoka One', cursive; font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
    .fech-enc-linha2 { font-family: 'Fredoka One', cursive; font-size: 22px; color: #fff; }
    .btn-lime { display: block; width: 100%; text-align: center; background: var(--lime); color: var(--dark); font-family: 'Fredoka One', cursive; font-size: 19px; padding: 18px 20px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(0,0,0,.2); position: relative; overflow: hidden; transition: transform .15s; }
    .btn-lime:active { transform: scale(.97); }
    .btn-lime::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent); animation: shimmer 2.5s 1s infinite; }

    /* ── FOOTER ── */
    .footer { background: var(--dark); padding: 28px 24px; text-align: center; }
    .footer-logo-img { height: 36px; }
    .footer-copy { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.25); margin: 10px 0; }
    .footer-links { display: flex; justify-content: center; gap: 16px; }
    .footer-links a { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.3); text-decoration: none; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.reveal--left  { transform: translateX(-28px); }
    .reveal.reveal--right { transform: translateX(28px); }
    .reveal.reveal--scale { transform: scale(.94); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-group .reveal:nth-child(1){transition-delay:0s}
    .reveal-group .reveal:nth-child(2){transition-delay:.08s}
    .reveal-group .reveal:nth-child(3){transition-delay:.16s}
    .reveal-group .reveal:nth-child(4){transition-delay:.24s}
    .reveal-group .reveal:nth-child(5){transition-delay:.32s}
    .reveal-group .reveal:nth-child(6){transition-delay:.40s}

    /* ── ANIMATIONS ── */
    @keyframes fadeDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeUp   { from{opacity:0;transform:translateY(16px)}  to{opacity:1;transform:translateY(0)} }
    @keyframes shimmer  { 0%{left:-100%} 100%{left:200%} }
    @keyframes nudge    { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
    @keyframes spin     { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
    #antes-depois::before { display: none; }
    .ben-habilidades[style*="border-radius:0"]::before { display: none; }