* {
  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;
}

/* Intro */

.intro {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  background-color: #12121a;
}

.intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Portadas --- */

.categoria {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  gap: 30px;
}

.categoria h2 {
  color: #a6e22e;
  font-size: 35px;
  font-weight: 800;
  padding-bottom: 8px;
}

.peliculas {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.peli {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  gap: 15px;
}

.portada {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #6a00ff;
  transition: all 0.3s ease;
}

.portada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portada:hover {
  border-color: #a6e22e;
  box-shadow: 0 0 10px rgba(166, 226, 46, 0.5);
  transform: scale(1.05);
}

.peli h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  min-height: 44px;
}

/* --- Información Película --- */

.informacion {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 35px;
  box-sizing: border-box;
}

.informacion h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  border-bottom: 3px solid #6a00ff;
  padding-bottom: 12px;
  width: 100%;
}

.contenido {
  display: inline-flex;
  flex-direction: row;
  width: 100%;
  gap: 45px;
  align-items: flex-start;
  justify-content: space-between;
}

.columna-izquierda {
  display: inline-flex;
  flex-direction: column;
  width: 32%;
  gap: 20px;
}

.marco {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  border: 2px solid #6a00ff;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(106, 0, 255, 0.2);
}

.marco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-izquierda {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.info-izquierda p {
  color: #c4c4d4;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.info-izquierda strong {
  color: #a6e22e;
}

.columna-derecha {
  display: inline-flex;
  flex-direction: column;
  width: 65%;
  gap: 25px;
}

.trailer {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 2px solid #a6e22e;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(166, 226, 46, 0.15);
}

.trailer iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.info-pelicula {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.info-pelicula p {
  color: #c4c4d4;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.info-pelicula strong {
  color: #a6e22e;
  font-size: 17px;
}

.slider {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  margin-top: 10px;
}

.imagenes {
  display: inline-flex;
  width: 86%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #6a00ff;
  scroll-behavior: smooth;
}

.imagenes a {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: block;
}

.imagenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flecha-slider {
  background-color: #6a00ff;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flecha-slider:hover {
  background-color: #a6e22e;
  color: #12121a;
  box-shadow: 0 0 12px rgba(166, 226, 46, 0.5);
}

/* 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: 10px;
}

.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;
}
