@import none;

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { overflow-x: hidden; }
  body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #ffffff; overflow-x: hidden; max-width: 100%; }

  :root {
    --verde: #84cc16;
    --verde-dark: #65a30d;
    --preto: #0a0a0a;
    --preto-card: #111111;
    --preto-2: #161616;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(132, 204, 22, 0.4); }
    50% { box-shadow: 0 0 40px rgba(132, 204, 22, 0.8), 0 0 60px rgba(132, 204, 22, 0.3); }
  }

  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
  .animate-float { animation: float 3s ease-in-out infinite; }
  .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
  .animate-spin-slow { animation: spin-slow 8s linear infinite; }
  .animate-shimmer { animation: shimmer 2s infinite; }

  .btn-whatsapp {
    background: #84cc16;
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .btn-whatsapp:hover {
    background: #65a30d;
    transform: translateY(-2px);
  }
  .btn-whatsapp .shimmer-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
  }

  .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .card-glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 204, 22, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .card-glass:hover {
    background: rgba(132, 204, 22, 0.08);
    border-color: rgba(132, 204, 22, 0.4);
    transform: translateY(-4px);
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #84cc16, transparent);
    opacity: 0.4;
  }

  .ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
  }

  .star-gold { color: #facc15; }

  .faq-item { border-bottom: 1px solid rgba(132,204,22,0.15); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-answer.open { max-height: 300px; padding-bottom: 16px; }
  .faq-icon { transition: transform 0.3s ease; }
  .faq-icon.open { transform: rotate(45deg); }

  .brand-badge {
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: #84cc16;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  .brand-badge:hover {
    background: rgba(132,204,22,0.2);
    border-color: #84cc16;
  }

  .step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #84cc16;
    color: #000;
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .gradient-text {
    background: linear-gradient(to right, #84cc16, #bef264);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

/* ── Botões: proteção global ── */
button,
input[type="button"],
input[type="submit"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}

/* ── WhatsApp links: alinhamento ícone+texto em todas as resoluções ── */
a[href*="wa.me"],
a[href*="whatsapp.com"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
}


/* ── Navbar ≤ 767px: remove CTA/WhatsApp no mobile ── */
@media (max-width: 767px) {
    nav a[href*="wa.me"],
    nav a[href*="whatsapp.com"] {
        display: none !important;
    }
}