* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Arial", "sans-serif";
  background-color: #2c2c36;
  text-align: center;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Navbar */

.header {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 2px solid #a6e22e;
  background-color: #12121a;
  top: 0;
  position: sticky;
  z-index: 1000;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
}

.menu ul {
  display: inline-flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #a6e22e;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #6a00ff;
}

/* Relatos */

.banner1 {
  display: inline-felx;
  width: 100%;
  height: 55vh;
  background-image: url("Recursos/Imagenes/Banner\ Relatos.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Películas */

.banner2 {
  display: inline-felx;
  width: 100%;
  height: 55vh;
  background-image: url("Recursos/Imagenes/Banner\ Cine.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Contacto */

.contacto {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 750px;          
  margin: 30px 0;         
  padding: 40px 30px;
  background-color: #12121a; 
  border: 2px solid #6a00ff;  
  border-radius: 12px;
  gap: 30px;
  scroll-margin-top: 90px;
}

.contacto h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid #6a00ff;
  padding-bottom: 5px;
}

.texto-contacto {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.texto-contacto p {
  text-align: center;        
  font-size: 16px;
  color: #c4c4d4;
  line-height: 1.6;
}

.formulario {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;          
  gap: 25px;
  align-items: center;
}

.label {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.label label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;          
}

.label input {
  width: 100%;
  padding: 14px 22px;
  background-color: #2c2c36; 
  border: 2px solid transparent;
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}


/* Footer */

.footer {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  align-items: center; /* Centra de forma horizontal todo el contenido */
  justify-content: center;
  gap: 15px;
  padding: 40px 20px;
  background-color: #12121a;
  border-top: 2px solid #6a00ff;
  margin-top: 20px;
}

.footer p {
  color: #8c8c9e;
  font-size: 16px;
  font-weight: 500;
}

.ancla-inicio {
  color: #a6e22e;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ancla-inicio:hover {
  color: #6a00ff;
}

/* Recursos Reutilizables */

.informacion {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 50px 0;
  gap: 30px;
}

.informacion p {
  text-align: justify;
  font-size: 18px;
  color: #c4c4d4;
  line-height: 1.6;
  font-weight: 500;
}

.boton1 {
  align-self: center;
  margin-top: 15px;
  background-color: #a6e22e;
  color: #12121a;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.boton1:hover {
  background-color: #6a00ff;
  color: #ffffff;
  transform: scale(1.05);
}
