/* Estilos globales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Vesper Libre', serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background-image: url('../images/Apolo_NewView_Intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    
  }
  
  /* Sección superior */
  .top-section {
    text-align: center;
    padding: 72px;
  }
  
  .logo img {
    width: 100px; /* Mantén el tamaño del logo o ajusta según necesites */
    margin-top: -20px; /* Ajusta este valor para subir el logo hacia arriba */
  }
  
 

  .main-text h1 {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
    color: #29204C;
}

/* Ensure the first line stays in one line */
.no-wrap {
    white-space: nowrap; /* Prevents text wrapping */
    font-size: 18px; /* As per your provided screenshot */
    font-weight: normal;
}

/* Italic for the second line */
.italic {
  font-family: 'Taviraj', serif;
  font-style: italic;
    font-weight: bold;
    font-size: 21px; /* As per your provided screenshot */
  
    color: #29204C; /* Ensure correct color */
}

  /* Imagen de las manos */
  .image-hands {
    position: relative;
    width: 100%;
    z-index: 1;
  }
  
  .image-hands img {
    width: 100%; /* Imagen de lado a lado */
    height: auto;
  }
  


 
  
  /* Cambiar los puntos a rayitas */
  .indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -16px; /* Ajusta este valor para mover los indicadores hacia arriba */
}


.dot {
  display: inline-block;
  width: 30px; /* Ajusta este valor para el ancho de las rayitas */
  height: 4px; /* Ajusta este valor para la altura de las rayitas */
  background-color: #ccc; /* Color inactivo de las rayitas */
  margin: 0 5px;
  border-radius: 0; /* Esto hace que sean rayitas en vez de puntos redondeados */
}

.dot.active {
  background-color: #29204C; /* Color activo de la rayita */
}

  
  .dot.active {
    background-color: #6e4897;
  }
  
  .action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Cabin', sans-serif;
  }
  
.primary-btn {
    border: 1px solid #ffffff; /* Borde blanco */
    background-color: transparent; /* Fondo transparente */
    color: #ffffff; /* Texto blanco */
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px; /* Texto más pequeño */
    width: 80%;
    opacity: 0.95; /* Aumenta la opacidad al 95% */
    transition: opacity 0.3s ease; /* Transición suave al cambiar la opacidad */
}

.primary-btn:hover {
    opacity: 1; /* Al pasar el cursor, el botón será completamente visible */
}


  .secondary-btn {
    border: 1px solid #FBADFF;
    background-color: #FBADFF; /* Fondo morado */
    color: #29204C; /* Texto blanco */
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    width: 100%;
    font-family: 'Cabin', sans-serif;
  }
  
   .secondary-btn:hover {
    opacity: 0.8;
  }
 
  @media screen and (width: 375px) {
    .main-text h1 {
      font-size: 15px;
    }
 
}




  /*mensaje*/
/* Estilos para el mensaje de activación de cuenta */
#activation-message {
  display: none; /* Oculto por defecto */
  background-color: white;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  margin: auto; /* Centra el contenedor horizontalmente */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%; /* Ajusta el contenedor a la mitad de la pantalla */
  left: 50%; /* Ajusta el contenedor a la mitad de la pantalla */
  transform: translate(-50%, -50%); /* Lo mueve para que quede perfectamente centrado */
  width: 80%; /* Ajusta el ancho del mensaje según necesites */
  max-width: 400px; /* Máximo ancho */
}

#activation-message h3 {
  font-size: 18px;
  color: #29204C;
  margin-bottom: 10px;
  font-family: "Cabin", sans-serif;

}

#activation-message p {
  font-size: 14px;
  color: #29204C;
  margin-bottom: 20px;
  font-family: "Cabin", sans-serif;

}

#activation-message .btn-start {
  background-color: #ff5cad;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 60px;
  font-size: 12px;
  cursor: pointer;
}

#activation-message .btn-start:hover {
  background-color: #ff3366;
}

.error-validation {
  padding: 0.2rem 0;
  color: #ff3366;
  font-weight: 700;
}

.app-version {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 10px;
  font-family: 'Cabin', sans-serif;
  padding: 10px;
}

@media (max-width: 440px) {
 

  .action-buttons {
    margin-top: -254px !important; /* Reduce el espacio superior si es necesario */
  }
 
}
@media (max-width: 375px) {
 

  .action-buttons {
    margin-top: -242px !important; /* Reduce el espacio superior si es necesario */
  }
 
}
@media (max-width: 390px) {
 

  .action-buttons {
    margin-top: -204px !important; /* Reduce el espacio superior si es necesario */
  }
 
}
@media (width: 360px) and (height: 780px) {
  .action-buttons {
    margin-top: 255px !important;
  }
}


@media (max-width: 360px) {
 

  .action-buttons {
    margin-top: -260px; /* Reduce el espacio superior si es necesario */
  }
 
}
@media (max-width: 320px) {
 

  .action-buttons {
    margin-top: -127px !important; /* Reduce el espacio superior si es necesario */
  }
 
}
.under-construccion{
  max-width: 480px;
  margin: 0 auto;

  position: relative; /* Para poder posicionar la imagen de fondo */
  background-image: url('../images/Apolo_coming soon.jpg'); /* Imagen de fondo */
  background-size: cover; /* Para cubrir todo el fondo */
  background-position: center center; /* Centrar la imagen */
  background-repeat: no-repeat;
  background-color: transparent; /* Asegurarse que no haya color de fondo en el contenedor */
  height: 100vh; /* Ocupa toda la ventana */
  overflow: hidden;
}
.center-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh; /* Centra verticalmente en toda la pantalla */
  width: 100%;
  padding: 0 10px; /* Evita que el texto se pegue a los bordes */
}

.center-text h1 {
  font-size: 22px; /* Ajusta el tamaño del título para que quepa en una sola línea */
  font-weight: bold;
  color: #2E2E2E;
  margin: 0; /* Elimina márgenes extra */
  line-height: 1; /* Reduce la separación entre líneas */
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
  font-family: 'Cabin', sans-serif;
}

.center-text p {
  font-size: 16px;
  color: #2E2E2E;
  
  line-height: 1.2; /* Reduce el espacio entre líneas */
  font-family: 'Cabin', sans-serif;
 
}
.textbreve{
  margin-top: -290px !important;
}
.actualizado{
  margin-top: 68px !important;
}
/* Footer */
.footer {
  font-family: 'Cabin', sans-serif !important;
  background: linear-gradient(135deg, #c479e6, #f9d4f4);
  color: #FFFFFF;
  padding: 20px;
  text-align: left;
  font-size: 10px;
  line-height: 1.6;
  width: 100vw;
  box-sizing: border-box;
  margin-left: -1px;
  margin-top: -20px; /* Ajustá el valor hasta que quede bien */

  position: relative; /* o eliminá esta línea directamente */
  bottom: auto;
  left: 0;
}


.footer p {
  margin: 0;
  margin-bottom: 0px;
  color: #6028D6;
  margin-left: 10px;
}
.footer .footer-code {
  text-align: left;
  padding-left: 30px;

  margin: 0;
}


.footer a {
  color: #FFFFFF ;
  text-decoration: none;
  color: #6028D6;
  font-family: 'Cabin', sans-serif !important;
  
}
.code-app-version {
  float: right;
  margin-right: 28px;
  font-family: 'Cabin', sans-serif !important;
}
.footer-code {
  background-color: #3E3563; /* Color de fondo más oscuro */
  color: #FFFFFF !important; /* Color del texto */
  padding: 10px 0; /* Padding ajustado */
  font-size: 12px;
  text-align: center;
  display: block;
  position: relative; /* Asegura que se mantenga en su lugar */
  left: -23px;
  width: 101vw; /* Asegura que ocupe todo el ancho del viewport */
  box-sizing: border-box; /* Asegura que no se desborde */
  border-radius: 0 0 10px 10px;
  top: 21px;
}
