  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* ── Extraído da logo Sempre Magras ── */
    --black:   #0A0F0B;   /* fundo escuro com leve tom verde da logo */
    --black2:  #0D1410;   /* cards e seções alternadas */
    --black3:  #111A13;   /* elementos de superfície */
    --green:   #2EE87A;   /* verde neon do círculo da logo */
    --green2:  #39FF8A;   /* verde neon mais brilhante (glow) */
    --green3:  #1ABF60;   /* verde neon mais escuro / hover */
    --gold:    #C8952A;   /* dourado base das letras SM */
    --gold2:   #E8B84B;   /* dourado claro / highlight */
    --gold3:   #A67C2E;   /* dourado escuro / sombra */
    --cream:   #F5F0E8;
    --cream2:  #EDE7DB;
    --white:   #FFFFFF;
    --gray:    #7A8A7D;
    --gray2:   #4A5A4D;
  }

  html { scroll-behavior: smooth; }

  img { max-width: 100%; }

  body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: linear-gradient(90deg, #061009, #0A1A0D, #061009);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1px solid rgba(46,232,122,0.25);
    text-shadow: 0 0 12px rgba(46,232,122,0.6);
  }
  .topbar span { color: var(--white); text-shadow: none; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,149,42,0.2);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(46,232,122,0.4));
  }
  .logo img.nav-logo-img {
    height: 56px;
    filter: drop-shadow(0 0 10px rgba(46,232,122,0.35));
  }
  .nav-cta {
    background: linear-gradient(135deg, var(--green3) 0%, var(--green) 100%);
    color: var(--black);
    border: 1px solid var(--green2);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 16px rgba(46,232,122,0.3);
  }
  .nav-cta:hover { background: linear-gradient(135deg, var(--green3) 0%, var(--green) 100%); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(46,232,122,0.5), 0 0 40px rgba(46,232,122,0.2); }

  /* ── HERO ── */
  .hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,232,122,0.10) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200,149,42,0.06) 0%, transparent 60%),
                var(--black);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-inner { position: relative; max-width: 860px; margin: 0 auto; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,149,42,0.08);
    border: 1px solid rgba(200,149,42,0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
  }
  .eyebrow::before { content: '✦'; font-size: 9px; }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
  }
  .hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--green2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(245,240,232,0.75);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

  .cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold3) 0%, var(--gold) 40%, var(--gold2) 60%, var(--gold) 100%);
    color: var(--black);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 20px 56px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 40px rgba(200,149,42,0.35), 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
  }
  .cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .cta-primary:hover::before { transform: translateX(100%); }
  .cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(200,149,42,0.5), 0 4px 16px rgba(0,0,0,0.6); }

  .cta-guarantee {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .cta-guarantee::before { content: '🔒'; font-size: 14px; }

  /* ── TICKER ── */
  .ticker-wrap {
    background: linear-gradient(90deg, #061009, #091510, #061009);
    border-top: 1px solid rgba(46,232,122,0.2);
    border-bottom: 1px solid rgba(46,232,122,0.2);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.04em;
    text-shadow: 0 0 10px rgba(46,232,122,0.5);
  }
  .ticker-dot { color: var(--gold); font-size: 8px; text-shadow: 0 0 8px rgba(200,149,42,0.6); }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── SECTION BASE ── */
  section { padding: 100px 24px; }
  .container { max-width: 1040px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 17px;
    color: rgba(245,240,232,0.7);
    line-height: 1.8;
    max-width: 640px;
  }
  .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 24px 0;
  }
  .divider-center { margin: 20px auto; }
  .divider-center-lg { margin: 20px auto 56px; }
  .section-body-center { margin: 0 auto; }
  .text-center { text-align: center; }
  .narrow-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .text-gold { color: var(--gold2); }
  .hero-logo { margin-bottom: 32px; }
  .hero-logo-img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 0 24px rgba(46,232,122,0.5)) drop-shadow(0 0 48px rgba(46,232,122,0.2));
  }

  /* ── DOR ── */
  .pain-section { background: var(--black2); }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }
  .pain-card {
    background: var(--black3);
    border: 1px solid rgba(200,149,42,0.1);
    border-radius: 8px;
    padding: 32px 28px;
    transition: border-color 0.3s ease;
  }
  .pain-card:hover { border-color: rgba(200,149,42,0.3); }
  .pain-icon { font-size: 28px; margin-bottom: 16px; }
  .pain-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 10px; }
  .pain-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

  /* ── SOBRE ── */
  .about-section { background: var(--black); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    padding-top: 125%; /* 4:5 ratio — cross-browser fallback */
    background: linear-gradient(135deg, #0D2018 0%, var(--black3) 100%);
    border-radius: 8px;
    border: 1px solid rgba(46,232,122,0.15);
    overflow: hidden;
    cursor: pointer;
  }
  .about-visual::before { display: none; }
  .about-placeholder {
    position: relative;
    text-align: center;
    padding: 40px;
  }
  .about-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
  }
  .about-placeholder p { font-size: 13px; color: var(--gray2); font-style: italic; margin-top: 16px; }
  .photo-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
  }
  .check-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: rgba(245,240,232,0.85);
    line-height: 1.5;
  }
  .check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(46,232,122,0.12);
    border: 1px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    margin-top: 1px;
    box-shadow: 0 0 8px rgba(46,232,122,0.3);
  }

  /* ── MÓDULOS ── */
  .modules-section { background: var(--black2); }
  .modules-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .modules-header .section-body { margin: 0 auto; }
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .module-card {
    background: var(--black);
    border: 1px solid rgba(245,240,232,0.06);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
  }
  .module-card:hover { border-color: rgba(200,149,42,0.2); transform: translateY(-4px); }
  .module-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(200,149,42,0.12);
    line-height: 1;
    margin-bottom: 8px;
  }
  .module-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }
  .module-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
  .module-tag {
    display: inline-block;
    background: rgba(46,232,122,0.08);
    border: 1px solid rgba(46,232,122,0.35);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(46,232,122,0.5);
  }

  /* ── ANTES E DEPOIS ── */
  .before-after-section { background: var(--black2); }
  .ba-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ba-card {
    background: var(--black);
    border: 1px solid rgba(200,149,42,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .ba-card:hover { border-color: rgba(46,232,122,0.25); transform: translateY(-4px); }
  .ba-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 ratio — cross-browser fallback */
    overflow: hidden;
  }
  .ba-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .ba-label {
    position: absolute;
    top: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
  }
  .ba-label.antes {
    left: 12px;
    background: rgba(0,0,0,0.75);
    color: #888;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .ba-label.depois {
    right: 12px;
    background: rgba(46,232,122,0.15);
    color: #2EE87A;
    border: 1px solid rgba(46,232,122,0.3);
  }
  .ba-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(200,149,42,0.08);
  }
  .ba-name { font-size: 13px; font-weight: 700; color: var(--gold); }
  .ba-detail { font-size: 12px; color: var(--gray); line-height: 1.5; }

  @media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
  }

  /* ── RESULTADO ── */
  .results-section { background: var(--black); }
  .results-intro { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .testimonial {
    background: var(--black2);
    border: 1px solid rgba(200,149,42,0.1);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
  }
  .testimonial::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(200,149,42,0.1);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 24px;
  }
  .testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
  .testimonial p { font-size: 15px; color: rgba(245,240,232,0.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--black3);
  }
  .author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
  }
  .author-name { font-weight: 700; font-size: 14px; color: var(--white); }
  .author-detail { font-size: 12px; color: var(--gold); }

  /* ── BÔNUS ── */
  .bonus-section {
    background: linear-gradient(135deg, var(--green3) 0%, var(--black3) 60%, var(--black) 100%);
    border-top: 1px solid rgba(200,149,42,0.1);
    border-bottom: 1px solid rgba(200,149,42,0.1);
  }
  .bonus-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .bonus-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }
  .bonus-card {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200,149,42,0.2);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
  }
  .bonus-icon { font-size: 36px; margin-bottom: 16px; }
  .bonus-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px;
  }
  .bonus-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 8px; }
  .bonus-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }



  /* ── CTA FINAL ── */
  .final-cta {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(46,232,122,0.2) 0%, transparent 70%), var(--black);
    text-align: center;
    padding: 120px 24px;
  }
  .final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
  }
  .final-cta h2 em { font-style: italic; color: var(--gold); }
  .final-cta p { font-size: 18px; color: rgba(245,240,232,0.65); margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,149,42,0.08);
    border: 1px solid rgba(200,149,42,0.2);
    color: var(--gold2);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    margin-bottom: 32px;
  }
  .pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  /* ── FAQ ── */
  .faq-section { background: var(--black2); }
  .faq-header { text-align: center; max-width: 500px; margin: 0 auto 56px; }
  .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    background: var(--black);
    border: 1px solid rgba(245,240,232,0.06);
    border-radius: 6px;
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-q .icon { font-size: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
  .faq-a {
    display: none;
    padding: 0 28px 22px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
  }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .icon { transform: rotate(45deg); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(245,240,232,0.06);
    padding: 48px 24px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }
  .footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(46,232,122,0.4));
  }
  footer p { font-size: 13px; color: var(--gray2); line-height: 1.8; }
  .footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
  .footer-links a { font-size: 12px; color: var(--gray2); text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }

  /* ── STICKY CTA MOBILE ── */
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid rgba(200,149,42,0.2);
    padding: 14px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .sticky-cta p { font-size: 13px; font-weight: 600; color: var(--cream); line-height: 1.3; }
  .sticky-cta p span { color: var(--gold); }
  .sticky-cta a {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 12px 16px; gap: 12px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 420px; width: 100%; margin: 0 auto; }
    .guarantee-box { padding: 40px 24px; }
    section { padding: 72px 20px; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
    .hero-stats { gap: 28px; }
  }


  /* ── CONTADOR ── */
  .countdown-bar {
    background: linear-gradient(90deg, #061009, #0A1A0D, #061009);
    border-bottom: 1px solid rgba(46,232,122,0.2);
    padding: 18px 20px;
    text-align: center;
  }
  .countdown-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .countdown-text { font-size: 13px; font-weight: 700; color: #2EE87A; letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 0 10px rgba(46,232,122,0.5); }
  .countdown-timer { display: flex; gap: 10px; align-items: center; }
  .countdown-block { background: rgba(0,0,0,0.5); border: 1px solid rgba(46,232,122,0.25); border-radius: 6px; padding: 8px 14px; text-align: center; min-width: 56px; }
  .countdown-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: #fff; line-height: 1; display: block; }
  .countdown-unit { font-size: 10px; color: #7A8A7D; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; display: block; }
  .countdown-sep { font-size: 22px; color: #2EE87A; font-weight: 900; }

  /* ── PROVA SOCIAL LIVE ── */
  .social-live { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,232,122,0.08); border: 1px solid rgba(46,232,122,0.2); border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: #2EE87A; margin-bottom: 32px; }
  .live-dot { width: 8px; height: 8px; background: #2EE87A; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; box-shadow: 0 0 8px rgba(46,232,122,0.8); }

  /* ── BIO DUPLA ── */
  .bio-section { background: var(--black2); }
  .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
  .bio-card {
    background: var(--black);
    border: 1px solid rgba(200,149,42,0.12);
    border-radius: 10px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .bio-card::before { content: ''; position: absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .bio-card:hover { border-color: rgba(200,149,42,0.3); transform: translateY(-4px); }
  .bio-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green3), var(--black3));
    border: 3px solid var(--gold3);
    display: flex; align-items: center; justify-content: center;
    font-size: 42px; margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(200,149,42,0.2);
  }
  .bio-role { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #2EE87A; margin-bottom: 8px; text-shadow: 0 0 8px rgba(46,232,122,0.4); }
  .bio-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 16px; }
  .bio-desc { font-size: 14px; color: rgba(245,240,232,0.7); line-height: 1.8; }
  .bio-cred { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
  .bio-tag { background: rgba(200,149,42,0.08); border: 1px solid rgba(200,149,42,0.2); color: var(--gold); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }

  /* ── COMPARAÇÃO ── */
  .comparison-section { background: var(--black); }
  .comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
  .comparison-col { border-radius: 10px; overflow: hidden; }
  .comparison-header { padding: 20px 28px; font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
  .comparison-header.sem { background: rgba(255,255,255,0.04); color: #555; border: 1px solid rgba(255,255,255,0.06); border-bottom: none; border-radius: 10px 10px 0 0; }
  .comparison-header.com { background: rgba(46,232,122,0.1); color: #2EE87A; border: 1px solid rgba(46,232,122,0.2); border-bottom: none; border-radius: 10px 10px 0 0; text-shadow: 0 0 10px rgba(46,232,122,0.4); }
  .comparison-list { list-style: none; border-radius: 0 0 10px 10px; }
  .comparison-list.sem { border: 1px solid rgba(255,255,255,0.06); border-top: none; background: rgba(255,255,255,0.02); }
  .comparison-list.com { border: 1px solid rgba(46,232,122,0.2); border-top: none; background: rgba(46,232,122,0.04); }
  .comparison-list li { padding: 14px 24px; font-size: 14px; line-height: 1.5; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .comparison-list li:last-child { border-bottom: none; }
  .comparison-list.sem li { color: rgba(245,240,232,0.45); }
  .comparison-list.sem li::before { content: '✗'; color: #555; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .comparison-list.com li { color: rgba(245,240,232,0.85); }
  .comparison-list.com li::before { content: '✓'; color: #2EE87A; font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 1px; text-shadow: 0 0 6px rgba(46,232,122,0.6); }

  /* ── PRA MIM? ── */
  .forme-section { background: var(--black2); }
  .forme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
  .forme-card {
    background: var(--black);
    border: 1px solid rgba(46,232,122,0.1);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: border-color 0.3s;
  }
  .forme-card:hover { border-color: rgba(46,232,122,0.3); }
  .forme-icon { font-size: 28px; flex-shrink: 0; }
  .forme-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .forme-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

  /* ── CTA MEIO ── */
  .mid-cta { background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(46,232,122,0.08) 0%, transparent 70%), var(--black3); text-align: center; padding: 80px 24px; border-top: 1px solid rgba(46,232,122,0.1); border-bottom: 1px solid rgba(46,232,122,0.1); }
  .mid-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3.5vw,40px); font-weight: 700; color: #fff; margin-bottom: 12px; }
  .mid-cta h2 em { font-style: italic; color: var(--gold); }
  .mid-cta p { font-size: 16px; color: rgba(245,240,232,0.65); margin-bottom: 36px; }
  .cta-primary-large {
    font-size: 17px;
    padding: 24px 64px;
  }
  .cta-guarantee-spaced { margin-top: 24px; }

  @media (max-width: 768px) {
    .topbar {
      padding: 10px 16px;
      font-size: 11px;
      line-height: 1.45;
      letter-spacing: 0.04em;
    }

    .countdown-bar { padding: 14px 14px; }
    .countdown-inner { gap: 10px; }
    .countdown-text {
      width: 100%;
      font-size: 12px;
    }
    .countdown-timer {
      width: 100%;
      justify-content: center;
      gap: 6px;
    }
    .countdown-block {
      min-width: 46px;
      padding: 7px 8px;
    }
    .countdown-num { font-size: 22px; }
    .countdown-unit { font-size: 9px; }
    .countdown-sep { font-size: 18px; }

    .logo img.nav-logo-img { height: 44px; }
    .nav-cta {
      max-width: 170px;
      padding: 10px 14px;
      font-size: 11px;
      line-height: 1.25;
      text-align: center;
      white-space: normal;
    }

    .hero {
      min-height: auto;
      padding: 56px 18px 48px;
    }
    .hero-inner { max-width: 100%; }
    .hero-logo { margin-bottom: 24px; }
    .hero-logo-img { height: 112px; }
    .eyebrow {
      margin-bottom: 24px;
      padding: 8px 14px;
      font-size: 10px;
      line-height: 1.3;
    }
    .hero h1 {
      font-size: 38px;
      line-height: 1.08;
    }
    .hero-sub {
      margin-bottom: 36px;
      font-size: 16px;
      line-height: 1.65;
    }
    .hero-stats {
      gap: 18px;
      margin-bottom: 36px;
    }
    .stat {
      flex: 1 1 80px;
    }
    .stat-num { font-size: 28px; }

    section { padding: 64px 18px; }
    .container { width: 100%; }
    .section-title {
      font-size: 32px;
      line-height: 1.18;
    }
    .section-body {
      max-width: 100%;
      font-size: 16px;
      line-height: 1.75;
    }

    .cta-primary,
    .cta-primary-large {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 340px;
      min-height: 56px;
      margin-right: auto;
      margin-left: auto;
      padding: 16px 18px;
      font-size: 13px;
      line-height: 1.3;
      text-align: center;
      white-space: normal;
    }
    .cta-primary-large { max-width: 360px; }
    .cta-guarantee {
      flex-wrap: wrap;
      line-height: 1.4;
    }

    .pain-grid,
    .modules-grid,
    .ba-grid,
    .testimonials-grid,
    .bonus-grid,
    .bio-grid,
    .comparison-grid,
    .forme-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
    }

    .pain-card,
    .module-card,
    .testimonial,
    .bonus-card,
    .bio-card {
      padding: 28px 22px;
    }

    .about-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 36px;
    }
    .about-visual {
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
    }
    .photo-badge {
      right: 12px;
      bottom: 12px;
      left: 12px;
      padding: 10px 12px;
      font-size: 11px;
      line-height: 1.25;
      text-align: center;
    }

    .modules-header,
    .ba-header,
    .results-intro,
    .bonus-header,
    .faq-header {
      margin-bottom: 42px;
    }

    .bonus-card:last-child:nth-child(3n+1) {
      grid-column: auto;
      max-width: none;
    }

    .forme-card {
      padding: 22px 20px;
      gap: 14px;
    }

    .comparison-header { padding: 18px 20px; }
    .comparison-list li { padding: 13px 18px; }

    .mid-cta,
    .final-cta {
      padding: 72px 18px;
    }

    .footer-logo-img { height: 64px; }
    .footer-links {
      gap: 14px;
      align-items: center;
    }

    .sticky-cta {
      padding: 12px 14px;
      gap: 10px;
      align-items: center;
    }
    .sticky-cta p {
      min-width: 0;
      font-size: 12px;
    }
    .sticky-cta a {
      padding: 11px 14px;
      font-size: 11px;
      line-height: 1.2;
      text-align: center;
      white-space: normal;
    }
  }

  @media (max-width: 380px) {
    .hero h1 { font-size: 34px; }
    .section-title { font-size: 29px; }
    .countdown-block {
      min-width: 42px;
      padding: 7px 6px;
    }
    .nav-cta {
      max-width: 150px;
      padding-right: 10px;
      padding-left: 10px;
    }
    .sticky-cta {
      align-items: stretch;
      gap: 8px;
    }
    .sticky-cta p { text-align: left; }
  }
  /* ── SCROLL REVEALS ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── MODAIS ── */
  body.modal-open { overflow: hidden; }

  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
  }
  .modal-overlay.is-open { display: flex; }

  .modal-box {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    padding: 48px 40px 40px;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    background: #0D1410;
    border: 1px solid rgba(46,232,122,0.25);
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 40px rgba(46,232,122,0.08);
    font-family: 'Inter', sans-serif;
  }
  .modal-box.is-open { display: block; }

  .modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 36px;
    height: 36px;
    margin: -8px -8px 16px 0;
    background: rgba(46,232,122,0.08);
    border: 1px solid rgba(46,232,122,0.2);
    border-radius: 50%;
    color: #2EE87A;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
  }

  #modal-content .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
  }
  #modal-content .modal-divider {
    width: 40px;
    height: 2px;
    background: #2EE87A;
    margin-bottom: 24px;
  }
  #modal-content .modal-date {
    font-size: 13px;
    color: #7A8A7D;
    margin-bottom: 24px;
  }
  #modal-content h3 {
    color: #2EE87A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  #modal-content p {
    color: rgba(245,240,232,0.75);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #modal-content p:last-child { margin-bottom: 0; }
  #modal-content a { color: #C8952A; }

  @media (max-width: 768px) {
    .modal-box {
      max-width: calc(100% - 32px);
      padding: 40px 24px 32px;
    }
  }
