/* =============================================
       DESIGN SYSTEM — VARIÁVEIS
    ============================================= */
    :root {
      --bg-dark:     #0A0A0A;
      --bg-mid:      #111111;
      --bg-card:     #0e0e0e;
      --gold:        #D4AF37;
      --gold-bright: #F0CC50;
      --purple:      #7C3AED;
      --purple-deep: #1E0A3C;
      --red-urgent:  #EF4444;
      --white:       #FAFAFA;
      --muted:       #888899;
      --border:      rgba(124,58,237,0.35);
      --radius:      14px;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body:   'Inter', system-ui, sans-serif;
    }

    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-dark);
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: hidden;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* =============================================
       SUITS BACKGROUND (naipes decorativos)
    ============================================= */
    .suits-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    .suits-bg span {
      position: absolute;
      font-weight: 700;
      line-height: 1;
      opacity: inherit;
    }

    /* =============================================
       TYPOGRAPHY
    ============================================= */
    .display { font-family: var(--font-display); letter-spacing: 0.02em; }
    .text-gold  { color: var(--gold); }
    .text-red   { color: var(--red-urgent); }
    .text-muted { color: var(--muted); }
    .text-white { color: var(--white); }

    /* =============================================
       SECTION LAYOUT
    ============================================= */
    section { position: relative; padding: 80px 16px; }
    .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .container-sm { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
    .container-md { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn-gold {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-bright));
      color: #0A0A0A;
      font-weight: 900;
      font-family: var(--font-body);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 18px 32px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(212,175,55,0.35);
      transition: all 0.3s ease;
      animation: pulseGold 2s ease-in-out infinite;
      width: 100%;
      text-align: center;
    }
    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 50px rgba(212,175,55,0.7), 0 0 100px rgba(212,175,55,0.4);
      filter: brightness(1.1);
    }
    @keyframes pulseGold {
      0%,100% { box-shadow: 0 0 20px rgba(212,175,55,0.4); }
      50%      { box-shadow: 0 0 45px rgba(212,175,55,0.75); }
    }

    /* =============================================
       CARDS / BOXES
    ============================================= */
    .card {
      background: rgba(26,26,26,0.85);
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 40px rgba(124,58,237,0.25);
    }
    .card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 0 32px rgba(212,175,55,0.3);
      transition: all 0.3s ease;
    }

    /* =============================================
       AVATAR / MASCOTE
    ============================================= */
    .mascot {
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--gold);
      box-shadow: 0 0 50px rgba(212,175,55,0.5);
    }

    /* =============================================
       GRID HELPERS
    ============================================= */
    .grid-2 { display: grid; gap: 32px; }
    .grid-3 { display: grid; gap: 24px; }
    @media (min-width: 768px) {
      .grid-2 { grid-template-columns: 1fr 1fr; }
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
    }

    /* =============================================
       FADE IN UP ANIMATION
    ============================================= */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: none;
    }

    /* =============================================
       SECTION 1 — HERO
    ============================================= */
    #hero { background: var(--bg-dark); }

    #hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 8vw, 5.5rem);
      line-height: 1;
      text-align: center;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }
    #hero .subtitle {
      text-align: center;
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 48px;
    }

    .hero-grid { display: grid; gap: 32px; align-items: center; }
    @media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

    .video-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      border: 2px solid var(--purple);
      box-shadow: 0 0 40px rgba(124,58,237,0.4);
      aspect-ratio: 16/9;
      background: #000;
    }
    .video-wrapper iframe { width: 100%; height: 100%; border: none; }

    .offer-box {
      background: rgba(26,26,26,0.1);
      border: 2px solid var(--purple);
      border-radius: var(--radius);
      padding: 10px 28px;
      box-shadow: 0 0 40px rgba(124,58,237,0.3);
      text-align: center;
    }
    .offer-box .title-bobo {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 20px;
    }
    .mascot-hero {
      width: 180px; height: 180px;
      margin: 0 auto 20px;
    }

    /* Price block */
    .price-block { text-align: center; }
    .price-original { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
    .price-main {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 5rem);
      color: var(--gold);
      line-height: 1;
      margin: 4px 0;
    }
    .price-sub { color: var(--muted); font-size: 0.85rem; }

    /* Trust badges */
    .trust-badges { margin-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .trust-row { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
    .trust-row svg { color: var(--gold); flex-shrink: 0; }
    .badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
    .badge {
      padding: 4px 10px;
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .guarantee-text { color: var(--gold); font-size: 0.9rem; margin-top: 4px; }

    /* =============================================
       COUNTDOWN
    ============================================= */
    .countdown-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 40px; }
    .countdown-label {
      color: var(--red-urgent);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      animation: blink 1.2s step-start infinite;
    }
    @keyframes blink { 50% { opacity: 0.4; } }
    .countdown-boxes { display: flex; gap: 12px; }
    .cd-box {
      display: flex; flex-direction: column; align-items: center;
    }
    .cd-num {
      background: var(--bg-card);
      border: 2px solid rgba(124,58,237,0.5);
      border-radius: 10px;
      padding: 6px 18px;
      min-width: 72px;
      text-align: center;
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--gold);
      box-shadow: 0 0 20px rgba(124,58,237,0.3);
    }
    .cd-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

    /* =============================================
       SECTION 2 — DOR
    ============================================= */
    #dor { background: var(--bg-mid); }
    #dor h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 32px; line-height: 1.1; }
    .dor-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
    .dor-list li {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: 1.05rem; line-height: 1.5; color: rgba(250,250,250,0.88);
    }
    .icon-x { color: var(--red-urgent); flex-shrink: 0; margin-top: 3px; }
    .mascot-forest { border-radius: var(--radius); border: 2px solid rgba(124,58,237,0.5); box-shadow: 0 0 40px rgba(124,58,237,0.3); width: 100%; max-width: 400px; margin: 0 auto; }

    /* =============================================
       SECTION 3 — SOLUÇÃO / MÓDULOS
    ============================================= */
    #solucao { background: var(--bg-dark); }
    #solucao .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3rem); text-align: center; margin-bottom: 16px; line-height: 1.15; }
    #solucao .section-sub { text-align: center; color: var(--muted); max-width: 760px; margin: 0 auto 48px; font-size: 1rem; line-height: 1.75; }
    .module-card { background: var(--bg-card); border: 2px solid rgba(124,58,237,0.5); border-radius: var(--radius); padding: 28px; transition: all 0.3s ease; }
    .module-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 0 32px rgba(212,175,55,0.3); }
    .module-icon { font-size: 2.8rem; margin-bottom: 16px; }
    .module-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
    .module-card p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

    /* =============================================
       SECTION 4 — PARA QUEM É
    ============================================= */
    #paraquem { background: var(--bg-mid); }
    #paraquem h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; margin-bottom: 48px; }
    .paraquem-grid { display: grid; gap: 24px; align-items: center; }
    @media (min-width: 768px) { .paraquem-grid { grid-template-columns: 1fr auto 1fr; } }
    .paraquem-card { background: rgba(26,26,26,0.7); border-radius: var(--radius); padding: 24px; }
    .paraquem-card.yes { border: 1px solid rgba(124,58,237,0.4); }
    .paraquem-card.no  { border: 1px solid rgba(239,68,68,0.4); }
    .paraquem-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 20px; }
    .paraquem-title.yes { color: var(--gold); }
    .paraquem-title.no  { color: var(--red-urgent); }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; line-height: 1.45; }
    .icon-check { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
    .mascot-center { display: none; }
    @media (min-width: 768px) { .mascot-center { display: flex; justify-content: center; } }
    .mascot-center img { width: 120px; height: 120px; }

    /* =============================================
       SECTION 5 — OFERTA
    ============================================= */
    #oferta { background: var(--bg-dark); }
    #oferta h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; margin-bottom: 40px; }
    .oferta-box {
      background: rgba(26,26,26,0.1);
      border: 2px solid var(--purple);
      border-radius: var(--radius);
      padding: 40px 36px;
      box-shadow: 0 0 40px rgba(124,58,237,0.3);
    }
    .oferta-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
    .oferta-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; }
    .oferta-list .icon-gold { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
    .oferta-price-row { border-top: 1px solid rgba(124,58,237,0.3); padding-top: 24px; text-align: center; margin-bottom: 24px; }
    .oferta-price-row .crossed { color: var(--muted); }
    .oferta-price-row .price { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--gold); margin-top: 4px; }

    /* =============================================
       SECTION 6 — GARANTIA
    ============================================= */
    #garantia {
      background: linear-gradient(180deg, var(--purple-deep) 0%, var(--bg-dark) 100%);
    }
    .garantia-grid { display: grid; gap: 40px; align-items: center; }
    @media (min-width: 768px) { .garantia-grid { grid-template-columns: 1fr auto; } }
    .shield-icon { font-size: 4rem; margin-bottom: 16px; }
    #garantia h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
    #garantia p { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 600px; }
    #garantia .highlight { color: var(--gold); font-weight: 700; }
    .mascot-garantia { width: 220px; height: 220px; margin: 0 auto; }

    /* =============================================
       SECTION 7 — FAQ
    ============================================= */
    #faq { background: var(--bg-mid); }
    #faq h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; margin-bottom: 40px; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      border: 1px solid rgba(124,58,237,0.4);
      border-radius: 10px;
      background: rgba(26,26,26,0.1);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      background: none;
      border: none;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(124,58,237,0.12); }
    .faq-arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a { display: none; padding: 0 24px 20px; color: var(--muted); line-height: 1.65; font-size: 0.95rem; }
    .faq-item.open .faq-a { display: block; }

    /* =============================================
       SECTION 8 — CTA FINAL
    ============================================= */
    #cta-final { background: var(--bg-dark); }
    #cta-final .mascot-final { width: 200px; height: 200px; margin: 0 auto 32px; }
    #cta-final h2 { font-family: var(--font-display); font-size: clamp(2rem, 5.5vw, 3.8rem); text-align: center; line-height: 1.1; margin-bottom: 16px; }
    #cta-final .lead { color: var(--muted); font-size: 1.1rem; text-align: center; margin-bottom: 32px; }
    #cta-final .meta-row { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--muted); }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #000;
      padding: 40px 16px;
      text-align: center;
      position: relative;
    }
    footer .footer-logo { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
    footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 16px; font-size: 0.85rem; }
    footer .footer-links a { color: var(--muted); transition: color 0.2s; }
    footer .footer-links a:hover { color: var(--gold); }
    footer .footer-sep { color: var(--muted); }
    footer .copyright { font-size: 0.75rem; color: rgba(136,136,153,0.5); }

    /* =============================================
       MODAL CHECKOUT
    ============================================= */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      position: relative;
      width: 100%; max-width: 460px;
      background: #111111;
      border: 2px solid var(--purple);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: 0 0 60px rgba(124,58,237,0.55);
      max-height: 95vh;
      overflow-y: auto;
      animation: modalIn 0.35s ease both;
    }
    @keyframes modalIn { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
    .modal-close {
      position: absolute; top: 12px; right: 14px;
      background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.5rem; line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--white); }
    .modal-mascot { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; box-shadow: 0 0 20px rgba(212,175,55,0.4); }
    .modal-title { font-family: var(--font-display); font-size: 2rem; text-align: center; margin-bottom: 6px; }
    .modal-sub { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
    .modal-sub span { color: var(--gold); font-weight: 700; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-label { font-size: 0.85rem; font-weight: 700; color: var(--gold); }
    .form-input {
      background: var(--bg-card);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      transition: all 0.25s;
      width: 100%;
    }
    .form-input:focus { border-color: var(--purple); box-shadow: 0 0 15px rgba(124,58,237,0.4); }
    .form-input.error { border-color: var(--red-urgent); }
    .form-error { color: var(--red-urgent); font-size: 0.78rem; }
    .modal-privacy { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 12px; }
    .modal-success { text-align: center; padding: 40px 0; }
    .modal-success p { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

    /* =============================================
       RESPONSIVE EXTRAS
    ============================================= */
    @media (max-width: 767px) {
      section { padding: 60px 16px; }
      .cd-num { font-size: 1.8rem; padding: 10px 14px; min-width: 58px; }
      .oferta-box { padding: 28px 20px; }
      .mascot-garantia { width: 160px; height: 160px; }
    }

    /* Divider de seção */
    .section-divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 16px; border-radius: 2px; }