@import none;
  
  * { font-family: 'Inter', sans-serif; box-sizing: border-box; }
  
  :root {
    --amarelo: #F5C000;
    --amarelo-escuro: #D4A500;
    --preto: #0a0a0a;
    --preto-card: #141414;
    --preto-medio: #1a1a1a;
    --branco: #ffffff;
  }

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

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

  @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(245, 192, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(245, 192, 0, 0.8); }
  }

  @keyframes road-stripe {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
  }

  .btn-whatsapp {
    background: var(--amarelo);
    color: var(--preto);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }

  .btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
  }

  .btn-whatsapp:hover {
    background: #ffd700;
    transform: translateY(-2px);
  }

  .btn-whatsapp-outline {
    background: transparent;
    color: var(--amarelo);
    border: 2px solid var(--amarelo);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn-whatsapp-outline:hover {
    background: var(--amarelo);
    color: var(--preto);
  }

  .glow-yellow {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 192, 0, 0.15);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .card-benefit {
    background: var(--preto-card);
    border: 1px solid rgba(245, 192, 0, 0.15);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .card-benefit:hover {
    border-color: var(--amarelo);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(245, 192, 0, 0.1);
  }

  .step-number {
    width: 56px;
    height: 56px;
    background: var(--amarelo);
    color: var(--preto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
  }

  .depo-card {
    background: var(--preto-card);
    border: 1px solid rgba(245, 192, 0, 0.12);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
  }

  .depo-card:hover {
    border-color: rgba(245, 192, 0, 0.4);
    box-shadow: 0 10px 30px rgba(245, 192, 0, 0.08);
  }

  .faq-item {
    border: 1px solid rgba(245, 192, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: all 0.3s ease;
  }

  .faq-item.open {
    border-color: var(--amarelo);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
  }

  .faq-icon {
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
  }

  .hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--amarelo) 0%, transparent 100%);
    overflow: hidden;
  }

  .text-gradient-yellow {
    background: linear-gradient(135deg, #F5C000, #FFD700, #F5C000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--amarelo), transparent);
    width: 80px;
    margin: 0 auto 32px;
    border-radius: 2px;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100%; }

  .star-yellow { color: #F5C000; }

  @media (max-width: 640px) {
    .btn-whatsapp, .btn-whatsapp-outline {
      width: 100%;
      padding: 14px 16px;
    }
  }

/* ── 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;
    }
}