/* Estilos generales para la disposición de la página */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Mantener el contenido principal flexible para ocupar el espacio disponible */
.main-content {
  flex: 1;
}

/* Mantiene la navbar fija y sobre otros elementos */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}


/* Estilo para el pie de página */
footer {
  background-color: #f8f9fa; /* color de fondo claro */
  text-align: center;
  padding: 20px 0;
  flex-shrink: 0;
}
/* Barra de anuncio */
.announcement-bar {
  background-color: #000000; /* Color de fondo negro */
  color: #fff; /* Color del texto blanco */
  padding: 5px 0; /* Espaciado alrededor del texto */
  font-weight: bold; /* Texto grueso */
  font-size: 16px; /* Tamaño de fuente */
  text-align: center; /* Alinear el texto al centro */
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sección general */
.paquetes-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9; /* puedes cambiarlo al color que prefieras */
}

.titulo-paquetes {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #000000;
}

/* Contenedor de las imágenes */
.imagenes-paquetes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

/* Estilo de cada imagen */
.img-paquete {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Efecto zoom al pasar el mouse */
.img-paquete:hover {
  transform: scale(1.05);
}

/* Responsive: apiladas en móviles */
@media (max-width: 768px) {
  .imagenes-paquetes {
    flex-direction: column;
    align-items: center;
  }
}

.titulo-paquetes {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000000;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}
.plan-premium-section {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
}

.table th {
  color: #6c757d;
  font-weight: 500;
  font-size: 0.95rem;
}

.table td {
  font-size: 0.95rem;
  padding: 0.75rem 0.5rem;
}

.precio-box {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.precio-box h3 {
  font-size: 2rem;
  font-weight: bold;
}

.precio-box p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.btn-success {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  .table td,
  .table th {
    font-size: 0.85rem;
  }

  .precio-box {
    padding: 1.5rem 1rem;
    
  }

  .precio-box h3 {
    font-size: 1.75rem;
  }

  .btn-success {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .plan-premium-section {
    padding: 2rem 1rem;
  }
}


.highlight-box {
  background-color: #c0ffc0;
  border-radius: 1.5rem;
}

.seccion-titulo {
  color: #006b00;
  font-family: 'Georgia', cursive;
  font-style: italic;
  font-weight: 600;
}

.img-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.img-title {
  font-size: 0.95rem;
  color: #333;
  margin-top: 0.25rem;
}

.highlight-box {
  background-color: #e0ffe0;
  border-radius: 1.5rem;
}

.seccion-titulo {
  color: #006b00;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
}

.img-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.img-title {
  font-size: 0.95rem;
  color: #333;
  margin-top: 0.25rem;
  font-family: 'Poppins', sans-serif;
}
