/* === BASE === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px 40px; /* Ajustamos el padding para más espacio */
  display: flex;
  justify-content: space-between; /* Alineamos el título y los enlaces a los extremos */
  align-items: center;
  z-index: 100;
  flex-wrap: wrap;
}

header h1 {
  color: #ffb400;
  font-size: 2rem; /* Aumentamos el tamaño del texto */
  margin: 0;
}

nav {
  display: flex;
  gap: 20px; /* Añadimos espacio entre los enlaces */
  justify-content: flex-end; /* Alinea los enlaces a la derecha */
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem; /* Ajustamos el tamaño de la fuente de los enlaces */
  transition: color 0.3s;
}

nav a:hover {
  color: #ffb400;
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px; /* Reducimos el padding en pantallas pequeñas */
    flex-direction: column; /* Cambiamos a columna en pantallas pequeñas */
    align-items: center; /* Centramos el contenido en pantallas pequeñas */
  }

  header h1 {
    font-size: 1.5rem; /* Reducimos el tamaño del título */
  }

  nav {
    margin-top: 15px; /* Espaciado superior para los enlaces */
    justify-content: center; /* Centramos los enlaces */
  }

  nav a {
    font-size: 0.9rem; /* Ajustamos el tamaño de los enlaces */
  }
}

/* === SLIDER === */
#inicio {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: max-content;
  z-index: 1;
  animation: slideLeft 60s linear infinite;
}

.slider img {
  flex: 0 0 auto;
  width: 20vw;
  height: 80vh;
  object-fit: cover;
  filter: brightness(92%);
  margin: 0 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.slider img:hover {
  transform: scale(1.08);
  filter: brightness(100%);
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* === TEXTO PRINCIPAL === */
.intro-text {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.intro-text h2 {
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  color: #ffb400;
  margin-bottom: 10px;
}

.intro-text p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #ddd;
  margin-bottom: 20px;
}

.btn {
  background-color: #ffb400;
  color: #000;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffd44d;
  transform: scale(1.05);
}

/* === INTRO “SANBUS TV” === */
.intro-container {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeOutIntro 1.8s ease 3.5s forwards;
}

@keyframes fadeOutIntro {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 800;
  color: #ffb400;
  letter-spacing: 3px;
  overflow: hidden;
}

/* Partes del texto */
.text-part {
  opacity: 0;
  animation: appearText 1s ease forwards;
}

.text-part.san {
  color: #ffb400;
  transform: translateX(-150px);
  animation-delay: 0.3s;
}

.text-part.bus {
  color: #fff; /* ⚪ blanco */
  transform: translateY(-150px);
  animation-delay: 0.9s;
}

.text-part.tv {
  color: #ffb400;
  transform: translateX(150px);
  animation-delay: 1.5s;
}

@keyframes appearText {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* === EFECTO DE DESINTEGRACIÓN === */
.text-wrapper {
  position: relative;
  animation: disintegrate 1.8s ease-in-out 2.8s forwards; /* Duración aumentada de 1.2s a 1.8s */
}

@keyframes disintegrate {
  0% { filter: blur(0px); opacity: 1; letter-spacing: 3px; }
  40% { filter: blur(3px); opacity: 0.7; transform: scale(1.05); }
  100% { filter: blur(10px); opacity: 0; letter-spacing: 25px; transform: scale(0.95); }
}

/* === SECCIONES === */
/* === BASE === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* === SECCIÓN "QUÉ ES SANBUSTV" === */
#que-es {
  background-color: #111;
  color: #eee;
  text-align: center;
  padding: 80px 20px 60px 20px; /* Espaciado superior, inferior y laterales */
  max-width: 1200px;
  margin: 0 auto; /* Centrado */
}

/* Título de la sección */
#que-es h2 {
  color: #ffb400;
  font-size: clamp(2rem, 6vw, 2.4rem);
  margin-bottom: 20px; /* Espacio debajo del título */
  text-align: center; /* Centrado */
}

/* Descripción de la sección */
#que-es p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px; /* Espacio debajo de la descripción */
}

/* === IMÁGENES DE PELÍCULAS (TRAILERS) === */
.movie-trailers {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espacio entre las imágenes */
  flex-wrap: wrap; /* Para que se ajusten bien en pantallas pequeñas */
}

/* Cada película */
.movie {
  position: relative;
  width: 220px; /* Ancho de la imagen */
  height: 350px; /* Alto de la imagen */
}

.movie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Efecto al poner el mouse */
.movie:hover img {
  transform: scale(1.05);
  filter: brightness(90%);
}

.movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mostrar el trailer cuando el mouse pase sobre la imagen */
.movie:hover video {
  opacity: 1;
}

/* === SECCIÓN DE GRATIS O TOCA PAGAR === */
#gratis {
  background-color: #111;
  color: #eee;
  text-align: center;
  padding: 100px 20px;
}

#gratis h2 {
  color: #ffb400;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  margin-bottom: 1rem;
}

#gratis p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
}

/* === FOOTER === */
footer {
  background-color: #000;
  color: #666;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
