@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Bison&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('/img/fondopc.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  text-align: left;
}

.hero-title {
  font-family: 'Bison', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem); /* Tamaño dinámico */
  color: white;
  display: inline-flex;
  align-items: center;
  position: relative;
  justify-content: left;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(150px, 20vw, 250px); /* Tamaño dinámico */
  height: auto;
  position: relative;
  top: -10px; 
  left: -10px;
}

.hero-content {
  max-width: 90%; /* Máxima anchura adaptativa */
}

.hero-text {
  font-family: 'Lovelo', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* Tamaño dinámico */
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
}

.highlight-money {
  color: #ef3842;
  font-weight: bold;
  font-size: clamp(1.2rem, 4vw, 2.2rem); /* Tamaño dinámico */
}

.inline-logo {
  height: clamp(30px, 5vw, 60px); /* Tamaño dinámico */
  vertical-align: baseline;
  margin-top: -20px;
}

.hero-date {
  font-family: 'Bison', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem); /* Tamaño dinámico */
  color: transparent;
  -webkit-text-stroke: 1px white; /* Contorno blanco */
  text-stroke: 1px white;
  display: inline-block;
}

.hero-subtext {
  font-family: 'Bitter', serif;
  font-size: clamp(0.8rem, 2.5vw, 1rem); /* Tamaño dinámico */
  margin-bottom: 1.5em;
  margin-top: 1.5em;
  text-align: left;
}

.hero-button {
  background-color: #ef3842;
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* Tamaño dinámico */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero-button:hover {
  background-color: #b6282f;
}

/* Responsividad adicional */
@media (max-width: 768px) {
  .hero {
    background: url('/img/fondomovil.png') no-repeat center center;
    background-size: cover;
    padding: 10%;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-subtext {
    text-align: center;
  }
  
}


.footer {
    background-color: #000; /* Fondo negro para armonizar con el diseño */
    padding: 20px 10%;
    text-align: center; /* Centra el contenido */
    color: white;
    font-family: 'Lovelo', sans-serif;
  }
  
  .footer-text {
    font-family: 'Bitter', serif;
    font-size: 1rem;
    display: inline-block; /* Mantiene alineación con el logo */
    color: white;
  }
  
  .inline-logof {
    height: 1.5rem; /* Tamaño del logo ajustable */
    vertical-align: middle; /* Alineación con el texto */
  }
  
  @media (max-width: 768px) {
    .footer-text {
      font-size: 0.9rem; /* Texto más pequeño en pantallas pequeñas */
    }
  
    .inline-logof {
      height: 1.2rem; /* Logo proporcionalmente más pequeño */
    }
  }
  


/* Fondo general de la sección */
.registration-section {
    background: url('/img/fondox.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  /* Contenedor del formulario */
  .form-container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
  }
  
  /* Título del formulario */
  .form-container h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Estilo del formulario */
  .registration-form label {
    display: block;
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
    text-align: left;
  }
  
  .registration-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
  }
  
  .registration-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Botón de envío */
  .registration-form button {
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  .registration-form button:hover {
    background-color: #e60000;
  }
  
  /* Estilo del checkbox */
  .privacy-check {
    display: flex;
    align-items: center;
    justify-content: left; /* Ajusta a la izquierda si es necesario */
    margin: 10px 0;
  }
  
  .privacy-check input {
    margin-right: 8px;
    width: auto;
    height: auto;
  }
  
  .privacy-check label {
    color: white;
    font-size: 0.9rem;
  }
  
  .privacy-check a {
    color: #ffcc00;
    text-decoration: underline;
  }

  /* Estilos para el mensaje de error */
.error-message {
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
  }
  
  .error-message button {
    margin-top: 10px;
    background-color: #ffcc00;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  