@import none;

  * { font-family: 'Inter', sans-serif; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { background-color: #0a0a0a; color: #f5f5f5; overflow-x: hidden; max-width: 100vw; }

  :root {
    --red: #cc0000;
    --red-bright: #e60000;
    --red-dark: #990000;
    --black: #0a0a0a;
    --black-mid: #141414;
    --black-light: #1e1e1e;
    --gray: #2a2a2a;
  }

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

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

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

  @keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(204, 0, 0, 0); }
  }

  @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; }
  .btn-pulse { animation: pulseRed 2s infinite; }

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

  .hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
  }

  .card-glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(204, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .card-glass:hover {
    background: rgba(204, 0, 0, 0.08);
    border-color: rgba(204, 0, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.15);
  }

  .btn-red {
    background: linear-gradient(135deg, #cc0000, #e60000);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn-red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2.5s infinite;
  }

  .btn-red:hover {
    background: linear-gradient(135deg, #e60000, #ff2222);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
  }

  .glow-red {
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.3), 0 0 80px rgba(204, 0, 0, 0.1);
  }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cc0000, transparent);
    opacity: 0.4;
  }

  .navbar-sticky {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(204, 0, 0, 0.2);
  }

  .star-icon { color: #cc0000; }

  .depo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(204, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .depo-card:hover {
    border-color: rgba(204, 0, 0, 0.4);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.1);
  }

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

  .img-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }

  .img-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.6));
    pointer-events: none;
  }

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