/* ========== ESTILO GENERAL ========== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fb;
  color: #1b2230;
  padding-top: 70px;
}

a {
  text-decoration: none;
}

/* NAVBAR */
.drix-navbar {
  background: #0b1f3a;
}

.logo-drix {
  height: 80px !important;
  width: auto !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #e5e7eb;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

/* HERO */
.hero-section {
  min-height: 90vh;
  background: radial-gradient(circle at top left, #1b5cff 0, #0b1f3a 45%, #050814 100%);
  color: #ffffff;
  padding: 110px 0 90px;
}

.hero-card {
  background: rgba(9, 16, 39, 0.9);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* SECCIONES GENERALES */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #6c757d;
}

/* SERVICIOS / CARDS */
.service-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e6eeff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #1b5cff;
  font-size: 1.4rem;
}

.service-box h4 {
  margin-bottom: 8px;
}

.service-link {
  font-size: 0.9rem;
  color: #1b5cff;
}

/* LISTAS CON CHECK */
.list-checks {
  list-style: none;
  padding-left: 0;
}

.list-checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.list-checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1b5cff;
  font-size: 0.9rem;
}

/* CARDS INFO */
.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.info-card i {
  color: #1b5cff;
  margin-right: 6px;
}

/* STATS */
.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c757d;
}

/* CLIENTES */
.client-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

/* CONTACTO */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.contact-card a {
  color: #1b5cff;
}

/* FOOTER */
.drix-footer {
  background: #0b1f3a;
  color: #e5e7eb;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

/* BOTONES */
.btn-primary {
  background-color: #1b5cff;
  border-color: #1b5cff;
}

.btn-primary:hover {
  background-color: #1548c4;
  border-color: #1548c4;
}

.btn-outline-primary {
  color: #1b5cff;
  border-color: #1b5cff;
}

.btn-outline-primary:hover {
  background-color: #1b5cff;
  border-color: #1b5cff;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }
  .hero-card {
    margin-top: 24px;
  }
}
