/* Estilos para pantallas pequenas (MOVILE) */

  *{
  margin: 0;
  padding: 0;
  text-align: center;
  letter-spacing: -0.7px;
  font-family: 'Montserrat', sans-serif;

}

  html {
    margin: 0; /* Elimina cualquier margen predeterminado */
    padding: 0; /* Elimina cualquier padding predeterminado */
    overflow-x: hidden; /* Desactiva el scroll horizontal */
    width: 100%; /* Asegura que el ancho no exceda el viewport */
  }

  body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #17181e;
}

/* Bolita animada (ahora emoji de dragón) */
#bouncingBall {
  position: fixed; /* Fijo al viewport */
  font-size: 40px; /* Tamaño del emoji */
  text-align: center;
  line-height: 50px; /* Centrar contenido */
  cursor: pointer;
  z-index: 1000; /* Siempre encima de otros elementos */
  width: 50px; /* Tamaño para alinearlo bien */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none; /* Opcional si decides no usar animaciones de CSS */
}

/* Contenedor de emojis */
#emojiContainer {
  position: fixed; /* Asegura que esté fijo en el viewport */
  top: 0;
  left: 0;
  pointer-events: none; /* Permite hacer clic a través del contenedor */
  z-index: 9999; /* Encima de todo */
}

/* Estilo de los emojis */
.emoji {
  position: fixed; /* Fijo al viewport */
  font-size: 2rem;
  animation: fall 3s linear forwards; /* Animación de caída */
  z-index: 9999; /* Asegúrate de que estén encima de todo */
}

/* Animación de caída */
@keyframes fall {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100vh); /* Caer hasta fuera del viewport */
  }
}

/* Pop-up */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.popup-content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
}

#popupButton {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background-color: #ff5722;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}


.top-bar {
  text-align: center;
  background: linear-gradient(to right, #000000, #290909, #011309, #141203, #100000); /* Degradado horizontal con 5 colores */
  color: white;
  padding: 9px;
  padding-bottom: 11px;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Transición más fluida */
  cursor: pointer; /* Cambia el cursor a mano para indicar que es interactivo */
}

.top-bar:hover {
  color: #a7a7a7; /* Cambia el color a gris cuando el mouse está encima */
}


/* CONTAINER DE LOGOS DE TERCEROS */

.container_1 {
  background: #0b0e11 url('../img/shenwseb.png') no-repeat center center;
  background-size: cover;
  padding: 0px 20px 0px 20px;
  color: white;
  display: flex;
  height: 670px;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente el contenido interno */
  align-items: center; /* Centra horizontalmente el contenido interno */
}


.container_1 h1{
  font-size: 33px;
}

.container_1 h2{
  margin-top: 20px;
  margin-bottom: -5px;
  font-size: 26px;
}

.container_1 h3{
  margin-top: -1px;
  font-weight: 500;
  font-size: 16px;
}

/* CONTAINER 2 DE LOGOS DE TERCEROS */

.container_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding-bottom: 3px;
  position: relative;
}

.lotv{
  max-width: 48%;
  max-height: 48%;
  padding-top: 3px;
  padding-right:210px;
  position: absolute;
} 

.lobi{
  max-width: 60%;
  max-height: 60%;
  padding-left: 45px;
  padding-right: 45px;
  position: absolute;
} 

.lotg{
  width: 35px;
  height: 35px;
  padding-left: 210px;
} 


.divi1{
  background-color: #17181e;
  color: white;
  padding: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.8rem;
}

.divi1 h3{
  font-weight: 500;
  font-size: 17px;
}



/* HEADER REAL */

.header {
  position: fixed; /* Se mantiene fijo en la parte superior */
  top: 39px; /* Si quieres que esté debajo del "top", ajusta este valor */
  left: 0; /* Asegura que comienza desde el borde izquierdo */
  width: 100%; /* Ocupa todo el ancho de la pantalla */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0); /* Fondo semitransparente */
  z-index: 1000; /* Asegura que esté encima de otros elementos */
  margin-top: -2px; /* Elimina márgenes innecesarios */
  padding: 10px 25px 10px 22px; /* Ajusta el espacio interno */
  box-sizing: border-box; /* Evita que el padding aumente el tamaño del elemento */
}


.header-container {
  top: 39px; /* Si quieres que esté debajo del "top", ajusta este valor */
  left: 0; /* Asegura que comienza desde el borde izquierdo */
  width: 100%; /* Ocupa todo el ancho de la pantalla */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0); /* Fondo semitransparente */
  z-index: 1000; /* Asegura que esté encima de otros elementos */
  margin-top: -2px; /* Elimina márgenes innecesarios */
  padding: 10px 0px 0px 0px; /* Ajusta el espacio interno */
  box-sizing: border-box; /* Evita que el padding aumente el tamaño del elemento */
}



.logo {
  display: flex;
  align-items: center;
  width: auto;
}

.logo img {
  width: 40px;
  height: auto;
  margin-top: 5px;
  margin-right: 10px;
  
}

.logo h1 {
  font-size: 16px;
  color: white;
  margin-left: -5px;
}

.cta-button a {
  font-size: 13px;
  display: inline-block;
  background-color: #FFC300;
  color: black;
  align-items: center;
  text-decoration: none;
  border-radius: 25px;
  padding: 5px 12px 6px 12px;
  font-weight: 800;
  width: auto;
  cursor: pointer;
}

#boton_header a {
  border-radius: 25px;
  padding: 5px 16px 6px 16px;
}

.plan-details {
    width: 300px;
    margin: auto;
    margin-top: 10px;
    border-radius: 20px;
    text-align: center;
  }

.cta-button2 a {
  margin-top: 20px;
  font-size: 18px;
  display: inline-block;
  background-color: #FFC300;
  color: black;
  align-items: botton;
  text-decoration: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 7px 50px 8px 50px;
  font-weight: 900;
  width: auto;
}

.scrollButton {
  cursor: pointer;
}

.cta-button a:hover {
  background-color: #D1A000;
}

.cta-button2 a:hover {
  background-color: #D1A000;
}

.cta-button5 a {
  margin-top: 5%;
  margin-bottom: 10px;
  font-size: 16px;
  display: inline-block;
  background-color: rgba(165, 128, 5, 0.9);
  color: black;
  align-items: botton;
  text-decoration: none;
  border-radius: 5px;
  padding: 3px 40px 3px 40px;
  font-weight: 900;
  width: auto;
  cursor: pointer;
}

.cta-button5 a:hover {
  background-color: #D1A000;
}

/* CONTAINER LOGOS */

.container_2{
  background-color: black;
  width: auto;
  height: 60px;
}

/* CONTAINER VENTAJAS */

.divi1 {
  display: flex;
  flex-direction: column;
  background-color: #17181e;
  position: relative;
}
  
.box {
  background-color: rgba(255, 255, 255, 0.1);
  height: 50%;
  margin: 10px;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, #1a1a33, #000000);
}

.box h1 {
  padding-top: 10px;
  margin-bottom: 0.25rem;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.box video {
  margin-top: 10px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.box p{
  font-size: 1rem;
}

/* CONTAINER VIDEO INICIAL */

.video-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: -4px;
}

.video-container video {
  width: 100%;
  height: auto;
}

.footer {
  padding: 10px 30px 60px 30px;
  border-radius: 20px 20px 0px 0px;
  height: 360px; /* Ajusta el valor en función de la altura deseada */
  background-color: black; /* Color de fondo del footer */
  color: white; /* Color del texto del footer */
  font-size: 10px;
}

.footer h1{
  text-align: left;
  font-size: 15px;
}

.footer p{
  text-align: justify;
}

.pricing-section {
  background-color: #B0B0B0;
}


.pricing-section h1{
  padding-bottom: 5px;
}

.plan {
  width: 300px;
  padding: 20px;
  margin: auto;
  margin-top: 10px;
  border-radius: 20px;
  background-color: #f0f0f0;
  text-align: center;
  border: 1px solid #9C9B9B;
}

.plan h1 {
  font-size: 25px;
  color: #000000;
  padding-right: 20px;
}

.plan h5 {
  color: #8E7E20;
}

.plan p {
  font-size: 30px;
  color: #000000;
  padding-bottom: 18px;
}

.plan h3{
  font-size: 15px;
  color: #B1B1B1;
  padding-top: 20px;
}

.strikethrough {
  text-decoration: line-through;
  color: grey;
  font-size: 15px;
}

.btn-transparent {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 17px;
  padding: 10px 50px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-transparent:hover {
  background-color: #000000;
  color: #ffffff;
}

.advantage-box {
  font-size: 14px;
  width: 300px;
  height: 30px;
  background-color: #000000;
  border-radius: 20px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(-100%);
  animation: appear 0.5s;
  animation-fill-mode: forwards;
}

.advantage-text {
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  margin: 0;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.textindi {
  text-align: left;
  font-size: 13.8px;
}

/* Estilos generales */
.faq-section {
  padding: 20px;
  font-size: 13px;
}

.faq-section h2 {
  color: white;
}

.faq-list {
  list-style-type: none;
  padding: 0;
}

/* Estilos de las preguntas */
.question {
  background-color: #000;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

@keyframes slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Estilos de las respuestas */
/* Estilos de las respuestas */
.answer {
  display: none;
  padding: 10px;
  margin-bottom: 13px;
  background-color: #f0f0f0;
  border-radius: 10px;
  opacity: 0; /* Añade una opacidad inicial de 0 */
  max-height: 0; /* Añade una altura máxima inicial de 0 */
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease; /* Agrega una transición suave */
  animation: slide-down 0.5s ease;
  position: relative;
  z-index: 0;
  transform: translateY(-100%);
  opacity: 0;
  animation: slide-down 0.5s ease;
}

.answer.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
  max-height: 500px; /* Establece una altura máxima adecuada para mostrar el contenido */
  margin-bottom: 20px; /* Añade un margen inferior para suavizar la transición */
}



#popupBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  padding-bottom: 33px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  display: none;
  z-index: 1000;
}

#popup h2 {
  font-size: 20px; /* Tamaño de fuente deseado */
  padding-right: 20px;
  padding-left: 20px;
}

#cerrarPopup {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  cursor: pointer;
}

#popupTitle {
  margin: 5%;
}

#formularioPago input[type="text"],
#formularioPago input[type="email"],
#formularioPago input[type="number"],
#formularioPago select {
  background-color: #000;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 5px;
  margin-bottom: 10px;
  text-align: left;
}

#formularioPago h1{
  text-align: center;
}

.header-containerpop {
  display: flex;
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  border-bottom: 1px solid #424242;
  padding: 14px;
}

.header-containerpop .logo {
  display: flex;
  align-items: center;
}

.header-containerpop .logo img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.header-containerpop .logo h1 {
  margin: 0;
  font-size: 16px
}

#button {
  background-color: #FFC300;
  border: none;
  padding: 5px 30px;
  border-radius: 10px;
  cursor: pointer;
}

.cashbox {
  border: 1px;
  color: #000001;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #424242;
  padding: 6px;
  margin: 0 0px 20px 0px; /* Agrega las unidades de medida a los márgenes */
  display: flex;
  justify-content: space-between;
}


.cashbox h1:first-child {
  margin-right: auto;
}

.cashbox h1:last-child {
  margin-left: auto;
}

#intermediateWindow {
  padding: 0px;
  margin-bottom: 0px;

}

#siguienteBtn {
  background-color: #FFC300;
  border: none;
  padding: 5px 40px;
  border-radius: 10px;
  cursor: pointer;
  margin: auto;
}

#popupMessage {
  display: none;
}

#container {
  text-align: center;
  margin-top: 0px;
}

#container h1{
  margin: 10px;
  font-size: 25px;
  text-align: center;
}

#container .cashbox h1 {
  font-size: 12px;
  margin: 0px;
  color: white;
  padding: 0px 12px 0 14px;
}

#container h3{
  margin-bottom: 15px;
  margin-top: 10px;
  font-size: 11px;
  user-select: all;
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
}

#image {
  width: 150px;
  height: 150px;
}

/* CSS */
#selector {
  /* Estilos generales */
  padding: 8px;
  font-size: 14px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #222;
  color: #eee;
  outline: none; /* Elimina el contorno al hacer clic */

  /* Estilos de flecha desplegable */
  appearance: none; /* Oculta la flecha desplegable en ciertos navegadores */
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px; /* Añade un espacio para la imagen de la flecha */
}

/* Estilo al pasar el cursor sobre el selector */
#selector:hover {
  border-color: #373737;
}

/* Estilo cuando el selector está enfocado */
#selector:focus {
  border-color: grey;
  box-shadow: 0 0 5px black;
}


#contador {
  text-align: center;
  margin-top: 10px;
  font-size: 17px;
}


