@import none;

  * { font-family: 'Inter', sans-serif; box-sizing: border-box; }
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }

  @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(196, 30, 58, 0.4); }
    50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.8); }
  }
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 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; }
  .shimmer-btn { position: relative; overflow: hidden; }
  .shimmer-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
  }

  .hero-bg {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 30%, #1c1c1c 60%, #0d0d0d 100%);
  }

  .mesh-bg {
    background: radial-gradient(ellipse at top left, rgba(196,30,58,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(120,120,120,0.1) 0%, transparent 50%),
                #0f0f0f;
  }

  .card-glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .gradient-text {
    background: linear-gradient(135deg, #c41e3a, #e85d75, #c41e3a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
  }

  .red-line::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #c41e3a, #e85d75);
    border-radius: 2px;
    margin-top: 12px;
  }

  .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-content.open { max-height: 300px; }
  .faq-icon { transition: transform 0.3s ease; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .step-line { background: linear-gradient(to bottom, #c41e3a, transparent); }

  .benefit-card:hover { transform: translateY(-8px); transition: transform 0.3s ease; }

  .testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(196,30,58,0.2);
  }

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