/* -------- ESTILOS GENERALES -------- */

/* -------- ESTILOS GENERALES -------- */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Estilos para títulos principales */

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #ecab0d;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Lora', serif;
  font-weight: 400;
  color: #fff;
  text-transform: none;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4 {
  font-family: 'Lora', serif;
  font-weight: 400;
  color: #ecab0d;
  text-transform: none;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}


/* -------- BARRA SUPERIOR -------- */
.barra-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #000;
}

.barra-superior h1 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  font-family: 'Lora', serif;
  font-weight: 700;
  text-transform: uppercase;
}

.ingresar, .btn-atras {
  background: linear-gradient(to right, #ecab0d, #000);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
}

/* -------- MENÚ PRINCIPAL -------- */
.menu {
  display: flex;
  justify-content: space-between;
  background-color: #000;
  flex-wrap: wrap;
}

.menu a {
  flex: 1;
  text-align: center;
  background: linear-gradient(to right, #ecab0d, #000);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid #111;
  transition: filter 0.3s ease;
}

.menu a:last-child {
  border-right: none;
}

.menu a:hover {
  filter: brightness(1.2);
}

/* Botón hamburguesa (solo en pantallas pequeñas) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Estilo responsive para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -180px;
    width: 180px;
    height: auto;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    text-align: right;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .menu a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
  }
}

@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* -------- IMAGEN DESTACADA -------- */
.destacada {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.destacada img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: sepia(0.5) contrast(1.1);
}

.destacada input[type="radio"] {
  display: none;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%;
}

.slide {
  width: 33.333%;
}

#slide1:checked ~ .slides {
  transform: translateX(0);
}

#slide2:checked ~ .slides {
  transform: translateX(-33.333%);
}

#slide3:checked ~ .slides {
  transform: translateX(-66.666%);
}

.flecha {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(219, 146, 35, 0.8);
  color: white;
  padding: 20px;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flecha:hover {
  background: rgb(219, 146, 35);
  transform: translateY(-50%) scale(1.1);
}

.flecha.izquierda {
  left: 20px;
}

.flecha.derecha {
  right: 20px;
}

/* Control de visibilidad de flechas */
#slide1:checked ~ .flecha.izquierda {
  display: none;
}

#slide1:checked ~ .flecha.derecha {
  display: flex;
}

#slide2:checked ~ .flecha.izquierda,
#slide2:checked ~ .flecha.derecha {
  display: flex;
}

#slide3:checked ~ .flecha.derecha {
  display: none;
}

#slide3:checked ~ .flecha.izquierda {
  display: flex;
}


/* -------- OPINIONES -------- */
.opiniones {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.opiniones h3 {
 margin-bottom: 15px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Estilos para desktop (pantallas mayores a 768px) */
@media (min-width: 768px) {
  .cards {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .cards article {
    flex: 1;
    min-width: 0; /* Permite que los artículos se encojan si es necesario */
  }
}

.cards article {
  background: linear-gradient(to bottom, #ecab0d, #000);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cards article h3 {
  margin-bottom: 10px;
  text-align: left;
}

.cards article p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.cards article span {
  display: block;
  text-align: right;
  color: #DB9223;
}

/* -------- QUIÉNES SOMOS -------- */
.quienes-somos {
  padding: 2rem 1rem;
  background: #000000;
  max-width: 1200px;
  margin: 0 auto;
}

.quienes-somos h3 {
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-family: 'Lora', serif;
  text-align: left;
}

.quienes-somos p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 1rem;
}

/* -------- FOOTER -------- */
footer {
  background-color: #1a1a1a;
  padding: 1.5rem;
  text-align: center;
  line-height: 1.4;
  font-size: 0.75rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
  
  .footer-section h4 {
    color: #ecab0d;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-section p,
  .footer-section li {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #ecab0d;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer-section {
      margin-bottom: 2rem;
    }
  }
  

/* Clases para controlar la visibilidad en diferentes dispositivos */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* -------- RESPONSIVE HEADER -------- */
@media (max-width: 768px) {
  .barra-superior {
    flex-direction: column-reverse;
    align-items: flex-end;
    text-align: right;
  }

  .barra-superior h1 {
    width: 100%;
    padding-right: 1rem;
  }

  .ingresar {
    align-self: flex-start;
    margin-bottom: 0.5rem;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .menu a.menu-ingresar {
    background: linear-gradient(to right, #ecab0d, #000);
    color: #fff;
    padding: 0.8rem 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
  }
}

/* -------- INICIO DE SESIÓN -------- */

.form-container {
  background: linear-gradient(to bottom, #000, #ecab0d);
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}

.form-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-container p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

input[type="email"],
input[type="password"] {
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.btn-ingresar {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.olvido {
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
}

.social-login {
  margin-top: 1.5rem;
}

.social-login p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.btn-social {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.google {
  background-color: #db4437;
  color: white;
}

.facebook {
  background-color: #3b5998;
  color: white;
}

.registro {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.registro a {
  color: #ffffff;
  text-decoration: none;
}
.login-bg {
  background: url('imagenes/fondo.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* -------- PELICULA DESTACADA -------- */

.pelicula-destacada {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor-video {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}

.preview {
  position: relative;
  width: 100%;
  background: #000;
}

.preview img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(50%);
}

.texto-pelicula {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  z-index: 10;
}

.texto-pelicula h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  color: #ecab0d;
  margin: 0;
  text-transform: uppercase;
}

.texto-pelicula p {
  font-size: 24px;
  margin: 10px 0 0;
  color: #ecab0d;
}

.boton-play {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  background: linear-gradient(to right, #ecab0d, #000);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease;
}

.boton-play:hover {
  transform: scale(1.1);
}

.video-container {
  display: none;
  width: 100%;
  background: #000;
}

/* Estilos responsive */
@media screen and (max-width: 768px) {
  .texto-pelicula {
    bottom: 20px;
    left: 20px;
  }

  .texto-pelicula h2 {
    font-size: 32px;
  }

  .texto-pelicula p {
    font-size: 18px;
  }

  .boton-play {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
  }
}

@media screen and (max-width: 480px) {
  .texto-pelicula h2 {
    font-size: 24px;
  }

  .texto-pelicula p {
    font-size: 14px;
  }

  .boton-play {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 10px;
  }
}
.preview {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.preview img {
  width: 100%;
  display: block;
  border-radius: 4px;
  filter: brightness(90%);
  z-index: 1;
  position: relative;
}

  
/* -------- CURIOSIDADES -------- */
.curiosidades {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.curio-card {
  background: #000;
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #ecab0d;
  margin-bottom: 1.5rem;
}

.curio-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #fff799;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.curio-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f5f5;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
  .curiosidades {
    padding: 1rem;
  }
}
.visitas {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}


.info-visita p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ddd;
}

/* -------- CALENDARIO -------- */
.calendario {
  margin-top: 2rem;
}

.calendario table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.calendario th, .calendario td {
  border: 1px solid #444;
  text-align: center;
  padding: 0.6rem;
  color: #ccc;
}

.calendario .disponible {
  background-color: #ecab0d;
  color: #000;
  font-weight: bold;
}

.leyenda {
  color: #ccc;
  font-size: 0.85rem;
}

.cuadro {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ecab0d;
  margin-right: 6px;
  vertical-align: middle;
}

/* -------- FORMULARIO DE RESERVA -------- */
.reserva {
  margin-top: 3rem;
}

.reserva h3 {
  font-family: 'Lora', serif;
  color: #ffbe2f;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.reserva form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reserva label {
  font-weight: 500;
  color: #fff;
}

.reserva input, .reserva select {
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.btn-reservar {
  background-color: #ecab0d;
  color: #000;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.confirmacion {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.confirmacion h2 {
  font-family: 'Lora', serif;
  color: #ffbe2f;
  margin-bottom: 2rem;
}

.resumen-datos p {
  background: linear-gradient(to right, #ecab0d, #000);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: left;
}

.mensaje-final {
  margin-top: 2rem;
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
}

/* --------   PERFIL -------- */

.perfil {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}


.foto-perfil {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #ecab0d;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(236, 171, 13, 0.5);
}

.acciones-usuario {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acciones-usuario li {
  margin: 0.5rem 0;
}

.acciones-usuario a {
  text-decoration: none;
  background: linear-gradient(to right, #ecab0d, #000);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  display: inline-block;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease;
}

.acciones-usuario a:hover {
  background: linear-gradient(to right, #ffce3b, #111);
}
@media screen and (max-width: 768px) {
  .perfil {
    padding: 2rem 1.5rem;
  }

  .perfil-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .acciones-usuario a {
    width: 100%;
    text-align: left;
    padding: 0.8rem 1rem;
    box-sizing: border-box;
  }

  .foto-perfil {
    width: 120px;
    height: 120px;
  }

  section {
    margin-top: 1.5rem;
  }
}



/* Historial */
.historial h3,
.ultima-resena h3,
.proxima-visita h3,
.insignias h3,
.notificaciones h3 {
  font-family: 'Lora', serif;
  color: #ecab0d;
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.galeria-vistas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.galeria-vistas img {
  width: 120px;
  height: 180px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid #555;
}

/* Reseña */
.ultima-resena blockquote {
  font-style: italic;
  background-color: #222;
  color: #ddd;
  padding: 1rem;
  border-left: 4px solid #ecab0d;
  margin: 1rem auto;
  max-width: 700px;
}

/* Visita */
.proxima-visita p {
  color: #ccc;
  font-size: 1rem;
}

/* Insignias */
.insignias-lista {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.insignias-lista span {
  background: linear-gradient(to right, #ecab0d, #000);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Notificaciones */
.notificaciones label {
  color: #ccc;
  font-size: 0.95rem;
  cursor: pointer;
}

.notificaciones input {
  margin-right: 0.5rem;
}
.mensaje-gracias {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #000;
  border: 2px solid #ecab0d;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 600px;
}

.mensaje-gracias:target {
  display: block;
}

.mensaje-gracias:target ~ .form-votacion {
  display: none;
}

.mensaje-gracias h3 {
  color: #ecab0d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mensaje-gracias p {
  margin-bottom: 1.5rem;
}
.reseñas {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.opiniones-usuarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Tres columnas de igual ancho */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.opinion {
  background: #000;
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #ecab0d;
  margin-bottom: 1.5rem;
}

/* Estilos responsivos para tablets y móviles */
@media (max-width: 1024px) {
  .opiniones-usuarios {
    grid-template-columns: repeat(2, 1fr); /* Dos columnas en tablets */
  }
}

@media (max-width: 768px) {
  .opiniones-usuarios {
    grid-template-columns: 1fr; /* Una columna en móviles */
    padding: 1rem;
  }
}

.opinion h4 {
  font-family: 'Montserrat', sans-serif;
  color: #fff799;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.opinion p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f5f5;
}
/* Estilos para el sistema de likes */
.like-container {
  margin-top: 1rem;
}

.like-checkbox {
  display: none;
}

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #ecab0d, #000);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.like-btn:hover {
  filter: brightness(1.2);
}

.like-checkbox:checked + .like-btn {
  background: linear-gradient(to right, #ff4b4b, #ecab0d);
}

.like-checkbox:checked + .like-btn .like-text::after {
  content: 'Te gustó';
}

.like-checkbox:not(:checked) + .like-btn .like-text::after {
  content: 'Me gusta';
}
/* MENÚ NORMAL (DESKTOP & TABLET) */

.menu-nav ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  background-color: #000;
}

.menu-nav li {
  flex: 1; /* Hace que cada li use el mismo ancho */
  text-align: center;
}

.menu-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 0.5rem;
  background: linear-gradient(to right, #ecab0d, #000);
  border: 1px solid #000;
  height: 100%;
}


/* BOTÓN HAMBURGUESA (solo visible en mobile) */
@media screen and (max-width: 768px) {
  .barra-superior {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  .logo {
    height: 40px;
    width: auto; /* Esto mantendrá la proporción original */
    object-fit: contain; /* Asegura que la imagen no se deforme */
    margin-right: auto;
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }


  .menu-nav ul {
    display: none; 
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 70%;
    border-radius: 8px;
    padding: 1rem;
    z-index: 999;
  }

  .menu-nav ul.active {
    display: flex; 
  }
}
.destacada a {
  display: block;
  position: relative;
}

.destacada a img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
/* Sección de descripción con márgenes */
.descripcion {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Formulario de reseña */
.reseña-formulario {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.reseña-formulario h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: #ecab0d;
  margin-bottom: 1rem;
}

.reseña-formulario input,
.reseña-formulario textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
}

.boton-enviar {
  background-color: #ecab0d;
  color: black;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.ver-reseñas {
  margin-top: 2rem;
}

.boton-ver-reseñas {
  background: linear-gradient(to right, #ecab0d, #000);
  color: white;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
}

/* CARTELERA */

.grid-peliculas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

.dia {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 8px;
  padding: 2rem;
}

.dia h3 {
  color: #ffbe2f;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.pelicula {
  width: 100%;
  margin-bottom: 2rem;
}

.pelicula:last-child {
  margin-bottom: 0;
}

.pelicula-imagen {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 2/3;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pelicula-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pelicula-imagen:hover img {
  transform: scale(1.05);
}

.pelicula-imagen p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .contenedor-cartelera {
    padding: 2rem 1.5rem;
  }

  .grid-peliculas {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .pelicula-imagen p {
    font-size: 1rem;
    padding: 0.7rem;
  }

  .dia {
    padding: 1.2rem;
  }

  .pelicula-imagen {
    aspect-ratio: 2/3;
  }
}


/* Logo general (desktop) */
.logo {
  max-width: 220px;
  max-height: 80px;
  width: auto;
  height: auto;
}

/* Ajuste responsive para el logo */
@media screen and (max-width: 768px) {
  .barra-superior {
    flex-direction: row; /* Cambiamos a row para alinear horizontalmente */
    justify-content: flex-start; /* Alineamos al inicio (izquierda) */
    align-items: center;
    padding: 1rem;
    position: relative; /* Para posicionar el botón de menú */
  }

  .logo {
    height: 40px; /* Ajustamos el tamaño del logo para móvil */
    margin-right: auto; /* Empuja el resto de elementos hacia la derecha */
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.votacion-semana {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.votacion-semana h3 {
  margin-bottom: 15px;
}

.votacion-semana p {
  line-height: 1.6;
  margin: 0;
}

.votacion-semana a {
  color: #DB9223;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.votacion-semana a:hover {
  color: #b57615;
  text-decoration: underline;
}

/* -------- HISTORIA -------- */

.lumiton {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
main, body {
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .lumiton {
    margin: 1.5rem auto;
  }
}
.fondo-con-imagen {
  background-image: url("../imagenes/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

