@charset "utf-8";
/* ===== GENERAL ===== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  overflow-x: hidden !important; /*elimina scroll horizontal, ayuda por IA*/
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.fondo-base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("Img/Fondo.png");
    background-size: cover;
    background-position: center;
    z-index: -5;
}

/* Capa transparente que sí tiene blur */
.fondo-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px) brightness(0.9);
    z-index: -4;
}


/* CONTENEDOR DE HOJAS DETRÁS DEL TEXTO, Elaborado por IA, MISCHELL */
.hojas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1;            /* detrás del contenido */
}

/* Cada hoja */
.hoja {
    position: absolute;
    width: 60px;
    opacity: 0.9;
    animation: caer 10s linear infinite;
}

/* Animación */
@keyframes caer {
    0% {
        transform: translateY(-150px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.7;
    }
}

/* Asegurar que el contenido queda ENCIMA de las hojas */
.contenedor,
.perfil,
.titulo,
.intro,
.texto,
header,
nav {
    position: relative;
    z-index: 3; /* contenido arriba de las hojas */
}






/* ===== SECCION INICIO ===== */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background: url("../Img/Inicio.png")center center / cover no-repeat;
  color: white;
  overflow: hidden;
}

/* CONTENEDOR INTERNO */
.tablet {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* MENU FIJO, MISCHELL */
.menu {
  position: fixed;
  top: 40px;
  right: 50px;
  display: flex;
  gap: 30px;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.menu:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* LINKS DEL MENU */
.menu a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d37b38;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #d37b38;
  transform: scale(1.05);
}

/* CONTENIDO DEL HERO */
.hero-content {
  position: relative;
  z-index: 6;
  margin-left: 24%;
  width: 38%;
}

.hero-title {
  font-family: "Mohave", sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.lead {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.texto {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* BOTON INICIO */
.btn-transmedia {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  border: 2px solid white;
  font-weight: bold;
  font-family: "Mohave", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-transmedia:hover {
  background: white;
  color: black;
}



/* ===== SECCION TRANSMEDIA ===== */
.transmedia {
  height: 100vh;
  background-image: url( "../Img/Transmedia.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  overflow: hidden;
}

.transmedia-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 60px;
  border-radius: 20px;
  max-width: 950px;
  animation: fadeInUp 1.2s ease forwards;/* AYUDA DE IA*/
}

.transmedia-title {
  font-family: "Mohave", sans-serif;
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.transmedia-text {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ĂCONOS */
.transmedia-icons {
  display: flex;
  gap: 80px;
  margin-top: 20px;
}

.transmedia-icons a {
  text-align: center;
  text-decoration: none;
  color: white;
  font-family: "Mohave", sans-serif;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px); /* AYUDA DE IA*/
}

.transmedia-icons a:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}

.transmedia-icons img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.transmedia-icons a:hover img {
  transform: scale(1.15);
}

/* BOTON DERECHO (PERSONAJES) */
.btn-personajes {
  position: absolute;
  right: 60px;
  bottom: 60px;
  color: white;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);/* AYUDA DE IA*/
  font-family: "Mohave", sans-serif;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;/* AYUDA DE IA*/
}

.btn-personajes:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ANIMACION DE ENTRADA *//* AYUDA DE IA*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== SECCION PERSONAJES ===== */
.personajes {
  height: 100vh;
  background-image: url( "../Img/Personajes.png"); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
}

.personajes-overlay {
  background: rgba(0, 0, 0, 0.25);/* AYUDA DE IA*/
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 5%;
  box-sizing: border-box;
  z-index: 2;
}

.personajes-title {
  font-family: "Mohave", sans-serif;
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* GRID DE TARJETAS *//* AYUDA DE IA*/
.personajes-grid {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 3;
}

/* TARJETAS */
.personaje-card {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 15px;
  width: 260px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.personaje-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}

.personaje-img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.45s ease;
  display: block;
}

.personaje-card:hover .personaje-img {
  transform: scale(1.1);
}
/* AYUDA DE IA*/
.personaje-card h3 {
  margin-top: 12px;
  font-family: "Mohave", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* DESCRIPCION */
.personaje-descripcion {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  transition: opacity 0.45s ease, max-height 0.45s ease;
}
/* AYUDA DE IA*/
.personaje-card:hover .personaje-descripcion {
  opacity: 1;
  max-height: 420px;
}

/* BOTON LIBRO */
.btn-libro {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.18);
  transition: background 0.25s ease, transform 0.25s ease;/* AYUDA DE IA*/
  z-index: 4;
}

.btn-libro:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.btn-libro img {
  width: 28px;
  height: auto;
}

/* ===== SECCION EL LIBRO ===== */
.el-libro {
  height: 100vh;
  background-image: url( "../Img/ellibro.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  font-family: "Libre Baskerville", serif;
  overflow: hidden;
}

.libro-overlay {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  padding: 4rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.libro-content {
  max-width: 750px;
}

.libro-title {
  font-family: "Mohave", sans-serif;
  font-size: 85px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.libro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BOTON LIBRO (IZQUIERDA BAJO TEXTO) */
.btn-libro-sec {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
  transition: all 0.3s ease;/* AYUDA DE IA*/
}

.btn-libro-sec:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.btn-libro-sec img {
  width: 32px;
  height: auto;
}

/* BOTON DOCUMENTAL (DERECHA ABAJO) */
.btn-documental {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;/* AYUDA DE IA*/
}

.btn-documental:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.btn-documental img {
  width: 32px;
  height: auto;
}

/* ===== SECCION EL DOCUMENTAL ===== */
.documental {
  height: 100vh;
  background-image: url( "../Img/eldocumental.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  font-family: "Libre Baskerville", serif;
  overflow: hidden;
}

.documental-overlay {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  padding: 4rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.documental-content {
  max-width: 750px;
}

.documental-title {
  font-family: "Mohave", sans-serif;
  font-size: 85px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.documental-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BOTON DOCUMENTAL (IZQUIERDA BAJO TEXTO) */
.btn-docu-sec {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
  transition: all 0.3s ease;/* AYUDA DE IA*/
}

.btn-docu-sec:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.btn-docu-sec img {
  width: 32px;
  height: auto;
}

/* BOTON BLOG (DERECHA ABAJO) */
.btn-blog {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-family: "Mohave", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;/* AYUDA DE IA*/
}

.btn-blog:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.btn-blog img {
  width: 32px;
  height: auto;
}

 /* ===== SECCION EL BLOG ===== */
.blog {
  min-height: 100vh;
  background-image: url( "../Img/elblog.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  position: relative;
  color: white;
}

/* CONTENEDOR DEL TEXTO */
.blog-content {
  max-width: 750px;
  background: rgba(0, 0, 0, 0.45); /* Fondo negro translucido detras del texto */
  padding: 60px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px; /* separa los elementos dentro del bloque */
}

/* TITULO */
.blog-title {
  font-family: "Mohave", sans-serif;
  font-size: 100px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

/* TEXTO */
.blog-text {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* BOTON DEBAJO DEL TEXTO */
.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 12px;
  font-family: "Mohave", sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
  width: fit-content; /* se ajusta al tamańo del contenido */
}

.btn-blog img {
  width: 55px;
  height: auto;
  transition: transform 0.3s ease;
}

.btn-blog:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.btn-blog:hover img {
  transform: scale(1.15);
}


/* =========================================
   FOOTER FINAL: MISCHELL
========================================= */

.footer-final {
  width: 100%;
  padding: 50px 25px;
  background: rgba(0, 0, 0, 0.45); /* translúcido suave */
  color: white;
  text-align: center;
  backdrop-filter: blur(4px);
  margin-top: 60px;
}

.footer-contenido {
  max-width: 900px;
  margin: 0 auto;
}

.footer-titulo {
  font-family: 'Mohave', sans-serif;
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 5px;
  color: #f4dca2; /* dorado suave */
}

.footer-texto {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-cita {
  font-family: 'Libre Baskerville', serif;
  margin-top: 25px;
  font-style: italic;
  opacity: 0.85;
  font-size: 16px;
}

/* Redes sociales */
.footer-redes {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-redes a {
  color: #fce9a8;
  text-decoration: none;
  font-family: 'Mohave', sans-serif;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease;
}

/* Brillito al pasar */ /* AYUDA DE IA*/
.footer-redes a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #ffe9a3;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-redes {
    flex-direction: column;
    gap: 15px;
  }
}












