/* ==== Responsive Ajustes para venta.html ==== */

/* Asegura que el header tenga padding-top para dejar espacio al navbar */
.hero-section {
  padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-10deg, #00020F, #00041F, #194EFF, #ffffff00);
}

/* Espaciado inferior antes del footer */
.card-style {
  margin-bottom: 3rem;
}

/* Botón de regreso flotante */

.btn-regreso-flotante {
  font-size: 1rem;
  color: #fff;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-regreso-flotante:hover {
  color: #ccc;
}

/* Estilo para los precios */
.price {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Listas responsivas dentro de las cards */
.features {
  padding-left: 1.2rem;
  list-style-type: disc;
}

/* Botón de WhatsApp */
.btn-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25D366;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Responsive para mobile */
@media (max-width: 767px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-regreso-flotante {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
  }

    .navbar-brand img {
    height: 28px;
    align-self: center;
  }

  .card-style h1 {
    font-size: 1.5rem;
  }

  .card h2 {
    font-size: 1.25rem;
  }

  .features {
    font-size: 0.95rem;
  }

    .card p, .card li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebc59;
}

}

/* Boton de regreso / primer estilo */ 

/* .btn-regreso-flotante {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-regreso-flotante:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #eee;
} */

.btn-regreso-flotante {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-regreso-flotante:hover {
  color: #2575fc;
  text-decoration: underline;
}

.footer .social-link:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

.footer .footer-link {
  color: #ffffff;
  transition: color 0.3s;
}

.footer .footer-link:hover {
  color: #0d6efd;
}

/* Estilo venta */

/* 
FONDO 
*/
body {
  background: linear-gradient(-10deg, #00020F, #00041F, #ffffff00); 
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: #ffffff;
  justify-content: center;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


        h1 {
            text-align: center;
            margin-bottom: 40px;
        }

        .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
        }
.card {
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.row.g-4 {
  row-gap: 1.5rem; /* menos separación */
}

.paquete-card {
  border-radius: 1.5rem;
  background-color: #ffffffcc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.paquete-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.paquete-card h2,
.paquete-card h3 {
  color: #333;
}
        
.features li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.btn-whatsapp-custom{
  background-color: #25D366;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
  color: #fff;
}


        body {
  overflow-x: hidden;
}

.hero-section, .card-style {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* 
Responsive 
*/


@media (max-width: 576px) {
.footer {
  background-color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.footer .social-link {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.footer .social-link:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

.footer .footer-link {
  color: #ffffff;
  transition: color 0.3s;
}

.footer .footer-link:hover {
  color: #0d6efd;
}

}

/* 
CSS para estilos visuales modernos 
*/

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  padding-top: 90px;
}

.card-style h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #343a40;
}

.card {
  background-color: #ffffff;
  color: #212529;
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px #fff;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.card p,
.card ul {
  font-size: 1rem;
  line-height: 1.6;
}

.card ul {
  padding-left: 1.2rem;
}

.card ul li::marker {
  color: #1e3c72;
  font-size: 1.2em;
}

.card .price {
  font-weight: bold;
  color: #28a745;
  margin-bottom: 0.3rem;
}

.features {
  padding-left: 1rem;
}

.features li {
  margin-bottom: 0.5rem;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebf5c;
  transform: scale(1.05);
}

/* Estilo extra para el navbar */

.navbar {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.85) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.navbar-brand span {
  font-weight: 600;
  font-size: 1.1rem;
}

.navbar a {
  transition: all 0.2s ease;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Tamaño responsivo del logo */
.navbar-brand img {
  height: 40px;
  transition: height 0.2s ease;
}

/* Estilos footer */

footer {
  background-color: #222;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  font-size: 1.25rem;
  margin: 0 0.5rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-center{
  flex: 1;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

/* Estilos para el selector de idioma */
    #language-switcher {
      position: fixed;
      top: 10px;
      right: 30px;
      z-index: 10000;
    }

    #language-switcher button {
      margin-left: 5px;
      border-radius: 20px;
    }
  
    .lang-btn {
  top: auto;
  width: 36px;
  height: 36px;
  padding: 0;
  font-weight: bold;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.100);
  background-color: #000; /* Fondo negro */
  color: #fff;            /* Texto blanco */
  border: none;           /* Opcional: sin borde si no quieres el gris por defecto */
  cursor: pointer;
  box-shadow: 0 2px 6px #fff;
}

.lang-btn:hover {
  transform: scale(1.05);
  background-color: #0d6efd; /* Verde al pasar el mouse */
  color: white;
}

/* Asegura que sólo se muestren en móvil */
@media (min-width: 992px) {
  .lang-switch-mobile {
    display: none !important;
  }
}


.lang-switch-mobile {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1051; /* asegúrate que esté encima del fondo del menú */
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos footer */

footer {
  background-color: #000 !important;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  font-size: 1.25rem;
  margin: 0 0.5rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  text-align: center;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
}


.footer {
  background-color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  padding: 2rem 1rem;
}



.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-center {
    margin-top: 2rem; /* separa del contenido superior del footer */
  padding-top: 1rem; /* espacio interno opcional */
  text-align: center;
  border-top: none;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
    margin-top: 2rem; /* separa del contenido superior del footer */
  padding-top: 1rem; /* espacio interno opcional */
  text-align: center;
  border-top: none;
}

.footer .footer-link {
  color: #ffffff;
  transition: color 0.3s;
}

.footer .footer-link:hover {
  color: #0d6efd;
}

.footer .social-link {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s, transform 0.3s;
}

.footer .social-link:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
}
.footer-bottomm {
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  padding-top: 1rem;
}
/* Responsive (mobile) */
@media (max-width: 768px) {
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 100%;
    text-align: center;
  }

  .footer-left {
    order: 1;
  }

  .footer-center {
    order: 2;
    margin-top: 1rem;
  }

  .footer-right {
    order: 3;
    margin-top: 1rem;
  }
  .footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
  display: inline-block; /* o block si quieres control vertical */
}

.footer-logo {
  transition: transform 0.3s, opacity 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
  display: inline-block; /* o block si quieres control vertical */
}

.footer-logo {
  transition: transform 0.3s, opacity 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}