/* ===== VARIABLES DE COLOR ===== */
:root {
  --azul-marino: #0A2540;
  --celeste: #00B4D8;
  --gris-claro: #f8f9fa;
}

/* ===== FUENTES Y RESET ===== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand span {
  color: var(--celeste);
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: var(--azul-marino) !important;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: var(--celeste) !important;
}

/* ===== BOTONES ===== */
.btn-celeste {
  background-color: var(--celeste);
  color: white;
  font-weight: 600;
  border: none;
}
.btn-celeste:hover {
  background-color: #0096c7;
  color: white !important;
}

/* ===== CARRUSEL ===== */
.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.carousel-item h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.carousel-item p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .carousel-item h2 { font-size: 2rem; }
  .carousel-item p { font-size: 1rem; }
}

/* ===== BANNER SOLIDCP ===== */
.solidcp-banner {
  background-color: #fff8e1;
  border-left: 5px solid #ffc107;
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  border-radius: 0 8px 8px 0;
}
.solidcp-banner i {
  color: #d39e00;
  margin-right: 10px;
}

/* ===== SECCIONES ===== */
.section-bg {
  background-color: var(--gris-claro);
  padding: 3rem 0;
}
.section-title {
  color: var(--azul-marino);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* ===== ESTADÍSTICAS ===== */
.stats-box {
  text-align: center;
  padding: 1.5rem;
}
.stats-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--celeste);
}

/* ===== PLANES ===== */
.plan-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #ddd;
  height: 100%;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.plan-header {
  background-color: var(--azul-marino);
  color: white;
  padding: 1.2rem;
  border-radius: 8px 8px 0 0;
}
.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #28a745;
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.whatsapp-float i {
  margin: 0;
  padding: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--azul-marino);
  color: white;
  padding: 2.5rem 0;
}
footer a {
  color: var(--celeste);
  text-decoration: none;
}
footer a:hover {
  color: white;
}