body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000d1a; /* azul oscuro serio */
  color: #080808;
  min-height: 100vh;
  overflow-x: hidden;
}

.contenedor-azul {
  display: flex;
  max-width: 1100px;
  height: 100vh;
  margin: 0 auto;
  background-color: #fcfcfd;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  gap: 40px; /* separación entre columnas */
  padding: 40px;
}

.imagen-lado-izquierdo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-lado-izquierdo img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.imagen-lado-izquierdo img:hover {
  transform: scale(1.05);
}

.contenido-derecho {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  gap: 25px;
}

.contenido-derecho h1:first-child {
  font-weight: 300;
  font-size: 2rem;
  color: #001529;
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
}

.titulo-principal {
  font-weight: 700;
  font-size: 4rem;
  margin: 0;
  line-height: 1.1;
}

.subtitulo {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #011736;
  max-width: 480px;
  margin: 0;
}

.boton-conoce-mas {
  background-color: #1c6ed5;
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 6px 15px rgba(28, 110, 213, 0.6);
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.boton-conoce-mas:hover {
  background-color: #145bb5;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .contenedor-azul {
    flex-direction: column;
    height: auto;
    padding: 60px 20px 40px 20px; /* AUMENTAMOS EL PADDING SUPERIOR */
    gap: 25px;
  }

  .imagen-lado-izquierdo {
    padding-top: 30px; /* subimos un poco más aquí también si quieres */
    margin-bottom: 10px;
  }

  .imagen-lado-izquierdo img {
    max-width: 75%;
    max-height: 340px;
    margin: 0 auto;
  }

  .contenido-derecho {
    padding: 0;
    margin-top: 0; /* Quitamos el valor negativo */
    align-items: center;
    text-align: center;
  }

  .contenido-derecho h1:first-child {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .titulo-principal {
    font-size: 2.8rem;
  }

  .subtitulo {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .boton-conoce-mas {
    padding: 14px 40px;
    width: 75%;
    font-size: 1rem;
    margin-top: 20px;
    align-self: center;
  }
}













/* Sección QUIEN SOY*/
.seccion-quien-soy {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  align-items: center;
  background-color: #00050a;
  height: 100vh; /* hace que ocupe toda la pantalla */
}


.imagen-quien-soy {
  flex: 1;
  padding: 20px;
}

.imagen-quien-soy img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.texto-quien-soy {
  flex: 1;
  padding: 20px;
}

.titulo-quien-soy {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  color: #f3f5f5; /* tono femenino y poderoso */
  margin-bottom: 20px;
}

.texto-quien-soy p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #a7a6a6;
}



html {
  scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seccion-quien-soy {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .imagen-quien-soy, .texto-quien-soy {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .imagen-quien-soy img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .titulo-quien-soy {
    font-size: 2rem;
    color: #f3f5f5;
    margin-bottom: 15px;
  }

  .texto-quien-soy p {
    font-size: 1rem;
    line-height: 1.6;
    color: #a7a6a6;
    padding: 0 10px;
  }
}
 



/* Seccion NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #007BFF;
  user-select: none;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin-left: 30px;
}

.navbar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar-menu li a:hover {
  color: #007BFF;
  text-decoration: underline;
}

/* Toggle para móviles */
.navbar-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Para que el contenido no quede tapado por el navbar */
body {
  padding-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    background: white;
    height: calc(100% - 60px);
    width: 200px;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li {
    margin: 20px 0;
  }

  .navbar-toggle {
    display: block;
    color: #007BFF;
  }
}




/* Seccion PRODUCTOS 4LIFE */
.contenedor-productos {
  background-color: #fcfcff;
  padding: 80px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contenedor-resaltado {
  background: #eef2ff;
  border-radius: 30px;
  padding: 60px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.titulo-resaltado {
  font-size: 3.5rem;
  font-weight: 800;
  color: #062791;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.titulo-resaltado::after {
  content: '';
  display: block;
  width: 60%;
  height: 5px;
  background: #076fb4;
  margin: 10px auto 0;
  border-radius: 3px;
  animation: subrayado 1s ease-out;
}

@keyframes subrayado {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 60%;
    opacity: 1;
  }
}

.subtitulo-productos {
  font-size: 1.6rem;
  font-weight: 600;
  color: #030007;
  margin-top: 5px;
  margin-bottom: 35px;
}

.tarjetas-enlaces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.tarjeta-enlace {
  background-color: #0a0a0a;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-enlace:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.tarjeta-enlace h4 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #fdfdfd;
  font-weight: bold;
}

.tarjeta-enlace p {
  margin: 10px 0 20px;
  font-size: 0.95rem;
  color: #f7f6f6;
}

.icono-enlace {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.boton-tarjeta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #062791;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-tarjeta:hover {
  background-color: #076fb4;
  transform: scale(1.05);
}











/* Seccion PRODUCTOS */


.contenedor-fondo-grande {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
  background-image: url('../img/yyy.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.15);
}

/* Título alineado a la izquierda */
.titulo-productos-overlay {
  position: absolute;
  top: 30px;
  left: 60px;
  font-size: 3.2rem;
  color: #0646b9; /* azul profesional */
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-bottom: 4px solid #0646b9; /* línea azul debajo */
  padding-bottom: 10px;
}


@keyframes brillar {
  0% {
    text-shadow: 1px 1px 3px rgba(6, 70, 185, 0.6);
    color: #0646b9;
  }
  100% {
    text-shadow: 2px 2px 12px rgba(6, 70, 185, 0.9);
    color: #0a5fd1;
  }
}

.boton-izquierda,
.boton-derecha {
  background-color: #068891;
  color: white;
  text-decoration: none;
  border: none;
  padding: 14px 28px;
  font-size: 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.boton-izquierda:hover,
.boton-derecha:hover {
  background-color: #043a6b;
}

.boton-derecha {
  margin-right: 20px;
}


/* Wrapper botones para móviles */
.botones-wrapper {
  display: contents; /* quitar el contenedor en desktop */
}

@media (max-width: 768px) {
  .contenedor-fondo-grande {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 450px;
    padding: 0 20px;
    position: relative; /* para posicionar botones */
  }

  .botones-wrapper {
    display: flex; /* en móvil sí es flex */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 100%;
    max-width: 320px;
    gap: 20px;
  }

  .boton-izquierda,
  .boton-derecha {
    width: auto;
    max-width: none;
    flex: 1;
    text-align: center;
    font-size: 1rem;
    padding: 12px 24px;
  }

  .boton-derecha {
    margin-right: 0;
  }
}



















































/* Seccion CERTIFICADOS Y CONGRESOS */

.contenedor-certificaciones {
  background-color: #110336; /* rosa vibrante */
  color: white;
  padding: 60px 40px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contenedor-certificaciones h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.tarjetas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.tarjeta {
  position: relative;  /* importantísimo */
  width: 300px;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
  /* Quita margin/padding que pueda mover la tarjeta */
  margin: 0;
}

.tarjeta-frontal, .tarjeta-trasera {
  position: absolute; /* para superponer ambas caras */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  transition: transform 0.6s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
}

.tarjeta-frontal {
  color: #fff;
  background-color: #062791;
  position: relative;
}

.tarjeta-frontal img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  margin-bottom: 10px;
}

.tarjeta-frontal h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
}


.tarjeta-trasera {
  transform: rotateY(180deg);
}

/* Flip effect on hover */
.tarjeta:hover .tarjeta-frontal {
  transform: rotateY(180deg);
}

.tarjeta:hover .tarjeta-trasera {
  transform: rotateY(0deg);
}


/* Responsive para móviles */
@media (max-width: 768px) {
  .tarjetas {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta {
    width: 90%;
    height: 300px;
  }
}
  








/* Seccion AGENDAR CITA */

.seccion-contacto-wpp {
  background: linear-gradient(to right, #01233b, #bbdefb);
  background-image: url('img/fondo-contacto-blur.jpg'); /* opcional si tienes una imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

.contenido-contacto {
  max-width: 800px;
  background-color: rgba(2, 3, 59, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.titulo-contacto {
  font-size: 2.8rem;
  color: #fcfcfd;
  margin-bottom: 15px;
  font-weight: 800;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.subtitulo-contacto {
  font-size: 1.2rem;
  color: #fdfbfb;
  margin-bottom: 30px;
}

.boton-wpp-contacto {
  background-color: #023314;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-wpp-contacto:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.icono-wpp {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .titulo-contacto {
    font-size: 2rem;
  }
  .subtitulo-contacto {
    font-size: 1rem;
  }
  .boton-wpp-contacto {
    font-size: 1rem;
    padding: 12px 24px;
  }
}





/* Seccion COPYRIGHT */
.footer {
  background-color: #111827; /* azul oscuro elegante */
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}






/* OBLIGAR A QUE USEN TODO EL ANCHO DE LA PANTALLA DEL CELULAR */
@media (max-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden; /* evita scroll horizontal */
  }

  /* Forzar ancho completo y sin margen/padding en todos los elementos principales */
  body > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
}











.recall-section {
  background-color: #000a1a; /* Azul oscuro elegante */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container {
  position: relative;
  max-width: 90%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
}

.card {
  min-width: 300px;
  max-width: 300px;
  margin: 0 10px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  padding: 20px;
  text-align: center;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.card button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0307ec;
  color: rgb(246, 247, 250);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}



.card button:hover {
  background-color: #021246;
}



.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.nav-arrow:hover {
  background: #ffffff;
}

.nav-arrow.left {
  left: -10px;
}

.nav-arrow.right {
  right: -10px;
}









.seccion-precios {
  background: linear-gradient(to right, #364ed8, #ffffff);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.contenedor-precios {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.texto-precios {
  flex: 1 1 500px;
}

.titulo-precios {
  font-size: 2.5rem;
  color: #0c014b; /* Verde fuerte */
  margin-bottom: 1rem;
}

.descripcion-precios {
  font-size: 1.2rem;
  color: #0c0231;
  margin-bottom: 2rem;
}

.boton-ver-precios {
  background-color: #0288d1;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.boton-ver-precios:hover {
  background-color: #006494;
}

.imagen-precios {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-precios img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contenedor-precios {
    flex-direction: column;
    text-align: center;
  }

  .texto-precios,
  .imagen-precios {
    flex: 1 1 100%;
  }

  .titulo-precios {
    font-size: 2rem;
  }

  .descripcion-precios {
    font-size: 1rem;
  }
}









.titulo-resaltado2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0ecec;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}


.titulo-resaltado2::after {
  content: '';
  display: block;
  width: 60%;
  height: 5px;
  background: #dddddf;
  margin: 10px auto 0;
  border-radius: 3px;
  animation: subrayado 1s ease-out;
}







/* PRELOADER ESTILOS */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-text {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  color: #004080; /* Azul formal */
  animation: fade 1.5s ease-in-out infinite alternate;
}

@keyframes fade {
  from { opacity: 1; }
  to { opacity: 0.5; }
}









/* FontAwesome (asegúrate de tenerlo en tu HTML <head>) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.seccion-redes {
  background: linear-gradient(135deg, #001529, #003366);
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.contenido-redes {
  max-width: 1100px;
  margin: auto;
}

.titulo-redes {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fcfdfd;
}

.descripcion-redes {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #dcdcdc;
}

.iconos-redes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.tarjeta-icono {
  background-color: #ffffff10;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 30px;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.tarjeta-icono i {
  font-size: 1.8rem;
}

.tarjeta-icono:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #ffffff20;
}

/* Colores específicos por red */
.tarjeta-icono.facebook:hover { color: #0668e9; }
.tarjeta-icono.instagram:hover { color: #df9b07; }
.tarjeta-icono.youtube:hover { color: #ff0000; }
.tarjeta-icono.tiktok:hover { color: #db0489; }

/* Responsive */
@media (max-width: 768px) {
  .titulo-redes {
    font-size: 2rem;
  }

  .descripcion-redes {
    font-size: 1rem;
  }

  .tarjeta-icono {
    width: 100%;
    justify-content: center;
  }
}











/* Botón flotante */
#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1e90ff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
#chatbot-toggle:hover {
  transform: scale(1.1);
}

/* Popup del chatbot */
#chatbot-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 400px;
  height: 550px;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
  box-sizing: border-box;
}

/* Cabecera del chatbot */
.chatbot-header {
  background-color: #1e90ff;
  color: white;
  padding: 12px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botón de cerrar */
#chatbot-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* iframe */
#chatbot-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #chatbot-popup {
    width: 100vw !important;           /* 🟢 Ocupa todo el ancho de la pantalla */
    max-width: 100vw !important;       /* 🟢 Sin límites de ancho */
    height: 420px !important;
    position: fixed !important;
    bottom: 160px !important;
    left: 0 !important;                /* 🟢 Empieza desde la izquierda */
    right: 0 !important;               /* 🟢 Cubre hasta la derecha */
    border-radius: 12px !important;
    overflow-x: hidden !important;     /* 🔒 Sin scroll lateral innecesario */
    box-sizing: border-box !important;
    z-index: 10000 !important;
  }

  #chatbot-toggle {
    /* ⛔ No se cambia el tamaño del botón */
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    position: fixed !important;
    bottom: 40% !important;
    right: 15px !important;
    z-index: 9999 !important;
  }
}
























/* Estilos para la sección de cuestionario */
#cuestionario-4life {
  background-color: #f5f8fa;
  padding: 2em 1em;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.contenedor-cuestionario {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5em;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contenedor-cuestionario h2 {
  margin-bottom: 1.5em;
  font-size: 1.8em;
  color: #005fab;
  font-weight: 700;
  border-bottom: 2px solid #dbeafe;
  padding-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pregunta {
  margin-bottom: 1.5em;
  text-align: left;
}

.pregunta label {
  display: block;
  margin-bottom: 0.4em;
  font-weight: bold;
  color: #333;
}

select {
  width: 100%;
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  background-color: #f9f9f9;
}

button#btnEnviar {
  margin-top: 1.5em;
  background-color: #005fab;
  color: white;
  border: none;
  padding: 0.8em 1.6em;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

button#btnEnviar:hover {
  background-color: #004080;
  transform: scale(1.03);
}

#resultado-recomendacion {
  margin-top: 2em;
  font-size: 1.15em;
  color: #007f3f;
  font-weight: bold;
  background: #e6ffed;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #b7e5c1;
}













.ruleta-section {
  background: #f9f9fb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.ruleta-title {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 10px;
}

.ruleta-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#spin-btn {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

#spin-btn:hover {
  background-color: #219150;
}

.resultado {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: bold;
}










@media (max-width: 768px) {
  .wheel-container {
    transform: scale(0.9);
    margin-top: 20px;
  }

  .wheel-title h2 {
    font-size: 1.5rem;
  }

  .wheel-title p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .spin-button {
    margin-top: 30px;
    font-size: 1rem;
    padding: 10px 20px;
  }

  .result {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .wheel {
    width: 280px;
    height: 280px;
  }

  .wheel span {
    font-size: 0.75rem;
    padding: 10px;
  }

  .pointer {
    width: 25px;
    height: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 25px solid #fff;
    top: 5px;
  }
}




















.contact-help {
  background-color: #05001b;
  padding: 60px 20px;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  color: #f4f5f7;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 18px;
  color: #cac7c7;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: #05001b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(92, 9, 9, 0.1);
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 20px;
  color: #f0eeee;
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #faf5f5;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

#send-whatsapp {
  margin-top: 25px;
  background-color: #068512;
  color: #f7f4f4;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

#send-whatsapp:hover {
  background-color: #012004;
}










/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .contact-help {
    padding: 30px 15px;
  }

  .contact-help h2 {
    font-size: 1.8rem;
  }

  .contact-help p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .contact-help form {
    padding: 20px;
  }

  .contact-help label {
    font-size: 0.95rem;
  }

  .contact-help select,
  .contact-help textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .contact-help button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}




/* --- Responsive NAVBAR --- */
@media (max-width: 768px) {
  /* Contenedor principal del navbar */
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* pegado a la izquierda */
    gap: 10px;
    padding: 15px 20px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    font-size: 15px;
    padding: 6px 0;
    display: block;
    color: #333;
    text-align: left; /* texto alineado a la izquierda */
  }

  /* 🔹 Ajuste especial para "Busca tu país" */
  nav ul li a img {
    margin-left: 0; /* pegado a la izquierda */
  }
  nav ul li {
    align-items: flex-start !important; /* sobrescribe inline styles */
    text-align: left;
  }

  /* Banderas (lenguaje) */
  #language-switcher {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    margin: 10px 20px;
  }

  #language-switcher img {
    width: 32px;
  }

  #language-switcher span {
    font-size: 12px;
  }

  /* Icono toggle hamburguesa */
  .navbar-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
  }
}

/* Ajuste extra para pantallas muy pequeñas */
@media (max-width: 480px) {
  nav ul {
    gap: 12px;
  }

  nav ul li a {
    font-size: 16px;
  }

  #language-switcher img {
    width: 34px;
  }
}







/* Fuente moderna (puedes importarla desde Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

/* --- SECCIÓN BUSCA TU MUNDO --- */
.busca-mundo {
  background-color: #020933;
  padding: 80px 20px;
  text-align: center;
}

.busca-contenido h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; /* grande y atractivo */
  font-weight: 700;
  color: #fdfeff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 20px;
}

/* Enlace del mundo */
.mundo-link {
  display: inline-block;
  cursor: pointer;
}

/* Imagen del mundo animada */
.mundo-animado {
  width: 220px;
  height: auto;
  animation: girarMundo 12s linear infinite; /* animación continua */
  transition: transform 0.3s ease;
}

.mundo-animado:hover {
  transform: scale(1.08); /* sigue con efecto hover */
}

/* Animación de rotación continua */
@keyframes girarMundo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* --- Responsivo ajustado --- */
@media (max-width: 768px) {
  .mundo-animado {
    width: 200px; /* un poco más grande que antes */
  }

  .busca-contenido h2 {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .busca-mundo {
    padding: 60px 15px;
  }

  .mundo-animado {
    width: 180px; /* aún más grande en móviles pequeños */
  }

  .busca-contenido h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }
}





/* Footer profesional */
.footer {
  background-color: #111; /* Fondo oscuro elegante */
  color: #e0e0e0;         /* Texto claro */
  padding: 25px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  text-align: center;
  border-top: 2px solid #333; /* línea superior sutil */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer a {
  color: #4da6ff;  /* Azul corporativo */
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-dev {
  font-size: 13px;
  color: #aaa; /* más discreto para el programador */
}

/* En pantallas grandes, mostrar en fila */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}























.navbar-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-logo {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.navbar-sublogo {
  font-size: 12px;
  font-style: italic;
  font-family: 'Georgia', serif;
  color: #555;
  margin-top: 2px;

  /* Oculto por defecto en pantallas grandes */
  display: none;
}

/* Mostrar solo en móviles */
@media (max-width: 768px) {
  .navbar-sublogo {
    display: block;
  }
}






#titulo-clic {
  color: #929291; /* Cambia a cualquier color que quieras */
}












.btn-comprar {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-comprar:hover {
  background: linear-gradient(135deg, #2980b9, #27ae60);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-comprar:active {
  transform: scale(0.97);
}


