/* ------------------------------------
   FUENTE GENERAL Y ESTILO BASE
------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;         /* Fondo principal negro absoluto */
  color: #f0f0f0;                 /* Texto general en blanco suave */
}

/* ------------------------------------
   ENCABEZADO DEL SITIO (Header)
------------------------------------ */
header {
  background-color: #0a0a0a;      /* Color más oscuro para separar visualmente */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;  /* Línea sutil como delimitador */
}

/* Título (si se usa texto en lugar de logo) */
header h1 {
  font-size: 1.5rem;
  color: #0007e2;                 /* Azul Indómita */
  margin: 0;
}

/* Enlaces del menú de navegación */
nav a {
  color: #f0f0f0;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #0007e2;                 /* Color de acento en hover */
}
/* ===== MENÚ HAMBURGUESA RESPONSIVE ===== */

/* Ocultar menú y botón por defecto en pantallas grandes */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Menú horizontal normal en desktop */
#mainNav {
  display: flex;
  gap: 1rem;
}

/* Ajustes para responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* mostrar botón hamburguesa */
  }

  #mainNav {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
  }

  #mainNav.active {
    display: flex; /* mostrar menú cuando está activo */
  }

  #mainNav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}



/* ------------------------------------
   LOGO DE BELINDA (HEADER)
------------------------------------ */
.logo {
  height: 60px;
  filter: drop-shadow(0 0 15px #0007e2); /* Resplandor azul sutil */
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 25px #333cf2); /* Resplandor más fuerte al pasar el mouse */
}

.logo-fullscreen {
  height: 100vh;                        /* Ocupa toda la pantalla */
  background-color: #000;              /* Fondo negro puro */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #111;       /* Separador visual con el resto del sitio */
}

/* Logo protagonista con efecto de entrada y glow */
.logo-indomita {
  width: 60vw;                         /* Ocupa 60% del ancho del viewport */
  max-width: 800px;
  opacity: 0;
  transform: scale(0.95);
  filter: drop-shadow(0 0 0px transparent);
  animation: fadeInGlow 2s ease-out forwards;
}

/* Animación de entrada con resplandor azul Indómita */
@keyframes fadeInGlow {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: drop-shadow(0 0 0px transparent);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 0 25px #0007e2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 10px #0007e2);
  }
}


/* ------------------------------------
   SECCIÓN HERO (Pre-save + Contador)
------------------------------------ */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #000, #0a0a0a); /* Degradado limpio */
}

.hero h2 {
  font-size: 2.2rem;
  color: #0007e2;                 /* Azul Indómita como color protagonista */
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Botón de pre-save */
.hero a {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background-color: #0007e2;      /* Azul Indómita */
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero a:hover {
  background-color: #333cf2;      /* Azul brillante al pasar mouse */
}

/* Contador */
.countdown {
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* ------------------------------------
   NEWSLETTER – Formulario de suscripción
------------------------------------ */
.newsletter {
  background-color: #0a0a0a;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #222;
}

.newsletter h3 {
  color: #0007e2;
  margin-bottom: 1rem;
}

.newsletter input[type="email"] {
  padding: 0.8rem;
  width: 250px;
  max-width: 80%;
  border: none;
  border-radius: 5px;
  margin-right: 1rem;
  background-color: #111;
  color: #fff;
}

.newsletter button {
  padding: 0.8rem 1.5rem;
  background-color: #0007e2;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s;
}

.newsletter button:hover {
  background-color: #333cf2;
}

/* ------------------------------------
   PIE DE PÁGINA (Footer)
------------------------------------ */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  color: #888;
}

/* ------------------------------------
   REDES SOCIALES – Íconos
------------------------------------ */
.social-links {
  margin-top: 1rem;
}

.social-links a img {
  width: 24px;
  margin: 0 8px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.social-links a:hover img {
  opacity: 1;
  transform: scale(1.1);
}
/* ------------------------------------
   BOTÓN DE PRE-SAVE CON GLOW Y ZOOM
------------------------------------ */
.btn-presave {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background-color: #0007e2;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(0, 7, 226, 0.4); /* Glow sutil */
  transition: all 0.3s ease-in-out;
}

.btn-presave:hover {
  background-color: #333cf2;
  transform: scale(1.05);                    /* Zoom suave */
  box-shadow: 0 0 25px rgba(0, 7, 226, 0.7);  /* Glow más fuerte */
}
/* ------------------------------------
   ÍCONO FLECHA ABAJO PARA SCROLL SUAVE
------------------------------------ */
.scroll-down {
  position: absolute;
  bottom: 40px;
  font-size: 2rem;
  color: #0007e2;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/* ------------------------------------
   IMAGEN TIPO POSTER DESTACADO
------------------------------------ */
.poster-indomita {
  text-align: center;
  background-color: #000;
  padding: 4rem 1rem;
}

.img-poster {
  width: 80%;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 0 15px #0007e2;
  transition: transform 0.3s ease;
}

.img-poster:hover {
  transform: scale(1.02);
}
.contacto-fondo {
  background: url('../imgs/belinda_contacto.jpg') no-repeat center center / cover;
  height: 100vh;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Degradado desde abajo hasta el 60% */
.contacto-fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 0;
}






/* ------------------------------------
   FORMULARIO DESPUÉS DE LA IMAGEN DE CONTACTO
------------------------------------ */
.formulario-contacto {
  background-color: #000;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Reutiliza .contacto-contenido como antes */

.texto-contacto {
  position: absolute;
  bottom: 40px;       /* Ajusta aquí si quieres bajarlo aún más */
  left: 40px;
  z-index: 2;
  color: #f5f0ea;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 1.2rem;
  line-height: 2rem;
  text-shadow: 1px 1px 2px #000;
  margin: 0;
  padding: 0;
}


/* Contenedor oscuro del formulario */
.contacto-contenido {
  background-color: rgba(0, 0, 0, 0.7);        /* Oscurece para dar contraste al texto */
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 30px rgba(0, 7, 226, 0.2);   /* Glow azul sutil */
}

/* Etiquetas del formulario */
.contacto-contenido label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
  display: block;
}

/* Campos de entrada y área de texto */
.contacto-contenido input,
.contacto-contenido textarea {
  padding: 0.7rem;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #111;
  color: #fff;
  outline: none;
}

/* Botón de envío */
.contacto-contenido button {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #0007e2;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contacto-contenido button:hover {
  background-color: #333cf2;
  transform: scale(1.03);
}
.privacidad-fondo {
  background: url('../imgs/belinda_privacidad.jpg') no-repeat center center / cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 5rem 1rem;
	 z-index: 1;
}
/* Degradado oscuro desde abajo hasta el 60% */
.privacidad-fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 0;
}

/* Asegura que el texto esté encima del degradado */
.privacidad-fondo > * {
  position: relative;
  z-index: 2;
}

.contenido-privacidad {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.aviso-box {
  max-width: 800px;
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  line-height: 1.6;
  box-shadow: 0 0 30px rgba(0, 7, 226, 0.1);
}

.aviso-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0007e2;
}

.aviso-box h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #00bfff;
}

.aviso-box ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

/* ------------------------------------
   ESTILOS RESPONSIVE PARA MÓVIL
------------------------------------ */
@media (max-width: 768px) {

  /* Escalar texto decorativo para móvil */
  .texto-contacto h1 {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.2rem;
  }

  .texto-contacto {
    bottom: 20px;
    left: 20px;
  }

  /* Formulario vertical sin márgenes laterales excesivos */
  .contacto-contenido {
    padding: 1.5rem;
    width: 90%;
  }

  /* Formulario inputs adaptados */
  .contacto-contenido input,
  .contacto-contenido textarea {
    font-size: 1rem;
    padding: 0.6rem;
  }

  /* Botón más grande para fácil toque */
  .contacto-contenido button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  /* Ajuste al logo fullscreen */
  .logo-indomita {
    width: 80vw;
    max-width: none;
  }

  /* Hero section texto más compacto */
  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-presave {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 90%;
    max-width: 300px;
  }

  /* Menú de navegación (simple stack para ahora) */
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }
}
/* ------------------------------------
   REDES SOCIALES SOLO TEXTO CON LINKS
------------------------------------ */
.social-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #000;
  border-top: 1px solid #111;
}

.social-names a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0007e2; /* Azul Indómita */
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-names a:hover {
  color: #333cf2;
  transform: scale(1.1);
}
