@import none;

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

  :root {
    --navy: #0F172A;
    --blue: #1D4ED8;
    --orange: #EA580C;
    --light: #F8FAFC;
    --white: #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(234,88,12,0.4), 0 0 40px rgba(234,88,12,0.2); }
    50% { box-shadow: 0 0 30px rgba(234,88,12,0.7), 0 0 60px rgba(234,88,12,0.4); }
  }
  @keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  .hero-bg {
    background: #000000;
  }
  .hero-float-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .btn-orange {
    background: linear-gradient(135deg, #EA580C, #c2410c);
    animation: pulse-glow 2.5s ease-in-out infinite;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-orange:hover { background: linear-gradient(135deg, #c2410c, #9a3412); transform: translateY(-2px); }
  .shimmer-btn { position: relative; overflow: hidden; }
  .shimmer-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 2.5s infinite;
  }
  .glass-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .glow-blue {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(29,78,216,0.15);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .glow-orange {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(234,88,12,0.12);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
  .card-float { animation: float 4s ease-in-out infinite; }
  .card-float-delay { animation: float 4s ease-in-out infinite 1s; }
  .card-float-delay2 { animation: float 4s ease-in-out infinite 2s; }
  .fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
  .star-filled { color: #F59E0B; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-answer.open { max-height: 300px; padding-top: 12px; }
  .faq-icon { transition: transform 0.3s ease; flex-shrink: 0; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-item button { min-width: 0; white-space: normal; }
  .faq-item button > span:first-child { min-width: 0; flex: 1 1 0%; overflow-wrap: break-word; word-break: break-word; white-space: normal; }
  .section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #EA580C, #1D4ED8);
    border-radius: 2px;
    margin: 0 auto 16px;
  }
  .stat-card {
    animation: countUp 0.6s ease-out forwards;
  }
  .text-gradient {
    background: linear-gradient(135deg, #EA580C, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .text-gradient-blue {
    background: linear-gradient(135deg, #1D4ED8, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .border-orange { border-left: 4px solid #EA580C; }
  .dot-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
  }

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