/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "yangoItalic";
  src: url("fonts/YangoHeadline_Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "yangotitulo";
  src: url("fonts/YangoHeadline.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "yangoTextMedium";
  src: url("fonts/YangoText_Md.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Yango";
  src: url("fonts/YangoText_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: "Yango", sans-serif;
  padding: 0px 30px;
}

.container {
  max-width: 480px;
  /* Ancho máximo para simular un dispositivo móvil */
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.title-registro {
  font-family: "yangoTextMedium";
  color: #ff0000;
  font-size: 25px;
  margin-bottom: 25px;
  margin-top: 50px;
}

.mt-5 {
  margin-top: 0 !important;
  padding: 0 !important;
}

.logo {
  margin-top: 50px;
}

/* @media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }

} */

.select-group {
  border: none;
  background-color: #e4e4e4;
  border-radius: 10px;
  margin-bottom: 10px;
}

#loadingIndicator {
  display: none;
  /* Inicialmente oculto */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  /* Alto z-index para asegurar que esté por encima de otros elementos */
}

/* Opcional: Estilo para oscurecer el fondo cuando el indicador de carga está activo */
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparente */
  z-index: 1040;
  /* Justo debajo del indicador de carga */
  display: none;
}


.centradito {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.modal-footer {
  border-top: none;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  text-align: center;
  margin-bottom: 10px;
  font-family: "yangoTextMedium";
  font-size: 16px;
}

.modal-body h4 {
  font-size: 24px;
  /* Personaliza el tamaño del texto según tus preferencias */
  font-weight: bold;
  /* Aplica negrita al texto */
}

/* .modal-body p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
} */

.modal-body a {
  display: block;
  /* Hace que el enlace ocupe todo el ancho disponible */
  word-wrap: break-word;
  /* Rompe la URL en múltiples líneas si es necesario */
  color: #ff0000;
  /* Cambia el color del enlace a rojo */
}

.modal-title {
  width: 100%;
}

.modal-content {
  border-radius: 20px;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #6c757d;
  /* Color de fondo gris */
  border-color: #6c757d;
  /* Color de borde a juego */
}

.terms-link {
  color: #ff0000;
  /* Rojo */
}

.terms-link:hover {
  color: #cc0000;
  /* Rojo más oscuro al pasar el mouse */
}

/* .mt-3,
.mt-2,
.my-3 {
  border-radius: 20px;
} */

.buttonValidade,
.buttonRegister,
.btn-primary,
.buttonRegisterMovil {
  border: none;
  color: white;
  background-color: #ff0000;
  margin-top: 20px;
  width: 150px;
  height: 35px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

/* Opcionalmente, si también quieres cambiar el color al pasar el ratón */
.btn-primary:hover,
.buttonValidade:hover,
.buttonRegister:hover,
.buttonRegisterMovil:hover {
  background-color: #dc0700;
}

.form-control {
  border-radius: 20px;
  border: 0;
  background-color: transparent;
}

.form-control:disabled {
  background-color: transparent;
}

.form-group {
  padding: 0px 2px;
  margin: 0px;
}

/* Ajusta el resplandor de enfoque para botones y campos de formulario */
.btn-primary:focus,
.form-control:focus {
  box-shadow: none !important;
  background-color: transparent !important;
}

*/ .btn-primary:active,
.form-control:active {
  box-shadow: none !important;
  background-color: transparent !important;
}

*/

/* Cambia el color de los botones primarios al hacer clic o enfocar */
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:focus {
  background-color: #c9302c;
  /* Este es el color rojo medio oscuro */
  border-color: #ac2925;
  /* Ajusta si es necesario para el borde */
  box-shadow: 0 0 0 0.2rem rgba(201, 48, 44, 0.5);
  /* Sombra ligera para el foco, ajusta el color según necesites */
}

#continueMessage {
  border-radius: 10px !important;
}

#logo {
  width: 70px;
  margin-top: 35px;
}

.mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup img {
  max-width: 480px;
  min-width: 200px;
  height: auto;
  margin-top: 60px;
}

.modal-content-bienvenido {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(fondocontacto.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 20px;
  width: 380px;
  height: 480px;
  margin: 20px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, rgba(0, 0, 0, 0.2));
  outline: 0;
}

.texto {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#check {
  width: 60px;
  height: auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
}

.contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 3px 35px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* Añade esta línea */
  border-radius: 12px;
}

#whatsapp {
  width: 20px;
  margin-right: 5px;
}

.icapp2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
} 

.icapp img, .icapp2 img {
  width: 30px;
  height: auto;
  margin-top: 5px;
}

#playstore {
  margin-right: 5px;
}

.descargar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(241, 241, 241);
}

.descargar1 {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
}
.texto-color-gris{
  color: #b3b3b3;
}

.btn-small-gris{
  background-color: rgb(255, 255, 255);
}

.cerrar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2a2727;
  width: 300px;
  height: 35px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  cursor: pointer;
}

h1 {
  font-family: "yangoItalic", Fallback, sans-serif;
  font-size: 4em;
  color: white;
  margin-top: 5px;
}

h4 {
  font-family: "yangoItalic", Fallback, sans-serif;
  font-size: 3em;
  color: white;
  margin-top: 0px;
  margin-bottom: 10px;
}

h2 {
  font-family: "yangoTextMedium", Fallback, sans-serif;
  font-size: 1.2em;
  color: white;
}

h3 {
  font-family: "yangoTextRegular", Fallback, sans-serif;
  font-size: 1.1em;
  color: white;
}

a {
  text-decoration: none !important;
}

button:focus {
  outline: none;
  border: none;
}

.modal-backdrop.show {
  opacity: 0.85 !important; /* Ajusta este valor según la oscuridad deseada */
}

.custom-modal-background {
  background-color: #333; /* Color de fondo oscuro */
  color: #fff; /* Texto blanco */
}

.custom-modal-background .modal-body {
  color: #fff; /* Asegura que el texto del cuerpo del modal sea blanco */
}

.custom-modal-background .modal-header {
  border-bottom: 1px solid #444; /* Añade un borde para separar el encabezado */
}

.custom-modal-background .modal-footer {
  border-top: 1px solid #444; /* Añade un borde para separar el pie de página */
}