/* ══════════════════════════════════════════════════════════════
   CAVO ENERGÍAS — Custom CSS Override
   Paleta Corporativa:
     Aqua Marina:   #4BB8A6
     Teal Acento:   #38B2AC
     Verde Oscuro:  #0A1E08
     Crema:         #EBE5E0
     Gris:          #5D5D65
   ══════════════════════════════════════════════════════════════ */

/* ── Acento corporativo en enlaces y hover ── */
a:hover {
  color: #4BB8A6 !important;
}

/* ── Borde sutil en tarjetas de servicio ── */
.service {
  border-left: 3px solid #4BB8A6 !important;
  transition: all 0.3s ease;
}

.service:hover {
  border-left-color: #38B2AC !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 184, 166, 0.2);
}

/* ── Secciones con estilo corporativo ── */
.services-group h2 {
  color: #4BB8A6 !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Logo en el widget de información ── */
.information-widget-logo img {
  max-height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ── Greeting text estilo corporativo ── */
.information-widget-greeting span {
  background: linear-gradient(135deg, #4BB8A6, #38B2AC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ── Status indicator colors ── */
.status-up {
  color: #10b981 !important;
}

.status-down {
  color: #ef4444 !important;
}

/* ── Scrollbar personalizado ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 30, 8, 0.3);
}

::-webkit-scrollbar-thumb {
  background: #4BB8A6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #38B2AC;
}
