* { font-family: 'Inter', sans-serif; }
  :root {
    --azul-escuro: #020912;
    --azul-medio: #0a1628;
    --azul-vivo: #1e6fd9;
    --cinza-grafite: #2d3340;
    --cinza-medio: #4a5568;
    --amarelo: #00b4ff;
    --amarelo-escuro: #0088cc;
    --branco: #ffffff;
    --off-white: #f8f9fc;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    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(0,180,255,0.4); }
    50% { box-shadow: 0 0 45px rgba(0,180,255,0.85); }
  }
  @keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
  }
  @keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.7; }
    94% { opacity: 1; }
    96% { opacity: 0.85; }
    97% { opacity: 1; }
  }

  html { scroll-behavior: smooth; }
  body { overflow-x: hidden; background: #030810; }

  .hero-bg {
    background: #030810;
    position: relative;
    overflow: hidden;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,180,255,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,180,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 8s linear infinite;
  }

  .glow-yellow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,180,255,0.09);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .glow-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0,180,255,0.15);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, #0072a3, #00b4ff);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    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;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2.5s ease-in-out infinite;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,180,255,0.55);
  }
  .btn-primary .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
  }

  .btn-outline {
    border: 2px solid rgba(0,180,255,0.35);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    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;
    background: rgba(0,180,255,0.05);
    backdrop-filter: blur(10px);
  }
  .btn-outline:hover {
    border-color: #00b4ff;
    color: #00b4ff;
    background: rgba(0,180,255,0.1);
    box-shadow: 0 0 20px rgba(0,180,255,0.2);
  }

  .glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .glass-card:hover {
    background: rgba(0,180,255,0.06);
    border-color: rgba(0,180,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,180,255,0.08);
  }

  .service-card {
    background: linear-gradient(135deg, #080f1e, #0d1525);
    border: 1px solid rgba(30,111,217,0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e6fd9, #00b4ff);
    box-shadow: 0 0 10px rgba(0,180,255,0.4);
  }
  .service-card:hover {
    border-color: rgba(0,180,255,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(0,180,255,0.1);
  }

  .depo-card {
    background: linear-gradient(135deg, #0a1424, #071020);
    border: 1px solid rgba(30,111,217,0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .depo-card:hover {
    border-color: rgba(0,180,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,180,255,0.08);
  }

  .diferencial-icon {
    animation: float 3s ease-in-out infinite;
  }

  .section-dark {
    background: linear-gradient(180deg, #030810, #050d1a);
  }
  .section-darker {
    background: #030810;
  }
  .section-mid {
    background: linear-gradient(180deg, #050d1a, #071020);
  }

  .yellow-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #00b4ff);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0,180,255,0.5);
  }

  .stat-card {
    background: linear-gradient(135deg, rgba(0,180,255,0.1), rgba(0,136,204,0.04));
    border: 1px solid rgba(0,180,255,0.2);
    border-radius: 12px;
  }

  .navbar-scrolled {
    background: rgba(3,8,16,0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0,180,255,0.04);
  }

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

  .animate-fadein {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .tag-badge {
    background: rgba(0,180,255,0.1);
    border: 1px solid rgba(0,180,255,0.35);
    color: #00b4ff;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    display: inline-block;
    text-shadow: 0 0 12px rgba(0,180,255,0.5);
  }

/* ── Cards de Serviço com Imagem ── */
.service-img-card {
  background: linear-gradient(180deg, #070e1c, #0d1525);
  border: 1px solid rgba(30,111,217,0.2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-img-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e6fd9, #00b4ff);
  box-shadow: 0 0 14px rgba(0,180,255,0.55);
  z-index: 3;
}
.service-img-card:hover {
  border-color: rgba(0,180,255,0.55);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 45px rgba(0,180,255,0.18);
}
.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.78) saturate(0.8);
}
.service-img-card:hover .service-img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1.05);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,180,255,0.07) 0%,
    rgba(3,8,16,0) 35%,
    rgba(3,8,16,0.6) 72%,
    rgba(7,14,28,1) 100%
  );
  z-index: 1;
}
/* Scan-line sweep on hover */
.service-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,180,255,0.14), transparent);
  z-index: 2;
  transition: left 0.7s ease;
}
.service-img-card:hover .service-img-wrapper::after {
  left: 160%;
}
.service-img-neon-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,180,255,0.12);
  border: 1px solid rgba(0,180,255,0.4);
  color: #00b4ff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0,180,255,0.7);
  backdrop-filter: blur(4px);
}
.service-img-content {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-img-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.service-img-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,180,255,0.15), rgba(30,111,217,0.05));
  border: 1px solid rgba(0,180,255,0.3);
  box-shadow: 0 0 15px rgba(0,180,255,0.12);
}

/* ── Tailwind yellow overrides → azul neon ── */
.text-yellow-400 { color: #00b4ff !important; }
.bg-yellow-400 { background-color: #00b4ff !important; }
.border-yellow-400 { border-color: #00b4ff !important; }
.hover\:text-yellow-400:hover { color: #00b4ff !important; }
.hover\:border-yellow-400:hover { border-color: #00b4ff !important; }
.hover\:bg-yellow-400:hover { background-color: #00b4ff !important; }
.focus\:ring-yellow-400:focus { --tw-ring-color: #00b4ff !important; }

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