/* Estilos comunes para todas las páginas */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
  }
  
  header {
    background-color: #e52921;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
  }
  
  header h1 {
    margin: 0;
    font-size: 3rem;
  }
  
  header p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 20px;
  }
  
  main {
    padding: 2rem;
  }
  
  footer {
    background-color: #e52921;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
/* Estilos específicos para la galería */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item h3 {
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gallery-item p {
  text-align: center;
  margin: 0;
  line-height: 1.6;
  max-height: 100px;
  overflow: hidden;
}

.gallery-item a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e52921;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

.gallery-item a:hover {
  background-color: #d21e1a;
}
  
  /* Estilos específicos para la galería de videos */
  .video-gallery {
    margin-top: 40px;
  }
  
  .video-item {
    margin-bottom: 20px;
  }
  
  .video-item iframe {
    width: 100%;
    min-height: 315px;
    border-radius: 8px;
  }
  
  .video-item h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    text-align: center;
  }
  
  /* Estilos para la página de detalles de la película */
  .movie-details img {
    width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .movie-details h2 {
    font-size: 2.5rem;
    color: #e52921;
    margin: 0;
    margin-bottom: 20px;
  }
  
  .movie-details p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
  }
  
  .movie-details ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .movie-details li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  
  .movie-details a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e52921;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
  }
  
  .movie-details a:hover {
    background-color: #d21e1a;
  }
  
  /* Estilos para el carrusel de imágenes */
  .carousel {
    display: flex;
    overflow: hidden;
    margin-top: 30px;
  }
  
  .carousel-item {
    position: relative;
    flex: 0 0 33.33%;
    overflow: hidden;
  }
  
  .carousel-item img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .carousel-item:hover img {
    transform: scale(1.1);
  }
  
  .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .carousel-item:hover .carousel-caption {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Estilos para la sección de resumen de películas */
.movie-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.summary-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.summary-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.summary-item h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  color: #007bff;
}

.summary-item p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.summary-item a {
  align-self: flex-end;
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.summary-item a:hover {
  background-color: #0056b3;
}

  
/* Estilos de la Galería de Personajes */
.character-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 50px 0;
  text-align: center;
  background-color: #f4f4f4;
  margin: 0 auto;
  max-width: 1200px;
}

.character-item {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.character-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.character-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.character-item h3 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #333;
}

.character-item p {
  margin-top: 10px;
  color: #777;
}

/* Estilos del Botón de Personaje */
.character-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff4f00;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out, border-bottom 0.3s ease-in-out;
}

.character-button:hover {
  background-color: #e63e00;
  transform: scale(1.05);
  border-bottom: none;
}

/* Estilos del Título de la Galería de Personajes */
.character-gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}



  
/* Estilos para la sección de Preguntas Frecuentes */
.faq {
  margin-top: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s, background-color 0.3s;
}

.faq-item h3 {
  margin: 0;
  padding: 15px 20px;
  font-size: 18px;
  color: #007bff;
  cursor: pointer;
  position: relative;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: '+';
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-item.active h3::after {
  content: '-';
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s;
  padding: 15px 20px;
}

/* Estilos adicionales para una mejor apariencia */
.faq-item:hover {
  background-color: #f2f2f2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Estilos para la sección de la última película */
.latest-movie {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.latest-movie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.latest-movie-info {
  text-align: center;
}

.latest-movie-info h2 {
  font-size: 28px;
  color: #333;
}

.latest-movie-info p {
  font-size: 20px;
  color: #555;
}

.latest-movie-button {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  transform: perspective(1000px) translateZ(0);
  transition: background 0.5s, transform 0.5s, box-shadow 0.3s;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none; /* Eliminamos la línea de abajo */
}

.latest-movie-button span {
  position: relative;
  z-index: 2;
}

.latest-movie-button:hover {
  background-color: #c0392b;
  transform: perspective(1000px) translateZ(50px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.button-shine {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  transform-origin: 0% 0%;
  transform: rotate(-45deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.latest-movie-button:hover .button-shine {
  opacity: 1;
  transform: rotate(45deg);
}

.button-shadow {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.latest-movie-button:hover .button-shadow {
  opacity: 1;
}

/* Estilos avanzados y modernos para la sección de Noticias y Actualizaciones */
.news-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.news-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.news-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.news-item {
  flex: 1;
  max-width: 400px;
  border: 1px solid #e1e1e1;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  object-fit: cover;
}

.news-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.news-item p {
  flex: 1;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #666;
}

.read-more-link {
  align-self: flex-end;
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.read-more-link:hover {
  background-color: #0056b3;
}
/* Estilo más avanzado para el enlace "Ver todas las noticias" */
.view-all-news-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff2400, #e81d1d, #e8b71d);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.3s ease, background-position 0.5s;
  transform: translateY(0);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.view-all-news-link:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  background-position: right center;
}


/* Estilos para la sección de merchandising */
.merchandise-section {
  background-color: #f7f7f7;
  padding: 80px 0;
  text-align: center;
}

.merchandise-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.merchandise-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.merchandise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.merchandise-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.merchandise-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.merchandise-info {
  flex: 1;
}

.merchandise-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.merchandise-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.shop-now-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff2400;
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.shop-now-link:hover {
  background-color: #e81d1d;
}

.view-all-merch-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff2400, #e81d1d, #e8b71d);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.3s ease, background-position 0.5s;
  margin-top: 30px;
}

.view-all-merch-link:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilos para la sección de Contenido Educativo */
.educational-content-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.educational-content-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.educational-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.educational-content-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.educational-content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.educational-content-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.educational-content-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.educational-content-info h3 {
  margin: 0;
  font-size: 18px;
}

.educational-content-info p {
  font-size: 14px;
  color: #666;
}

.learn-more-link {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s;
}

.learn-more-link:hover {
  background-color: #ff9900;
}

/* Estilos para la sección de Comentarios de los Creadores */
.creators-comments-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.creators-comments-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.creators-comments-carousel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.creators-comment {
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.creators-comment:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.creator-avatar img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.creator-info {
  padding: 20px;
  text-align: left;
}

.creator-info h3 {
  margin: 0;
  font-size: 18px;
}

.creator-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  font-size: 20px;
  color: #333;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #007bff;
}

/* Estilos para la sección "Detrás de Escena" */
.behind-the-scenes-section {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.behind-the-scenes-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.behind-the-scenes-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.behind-the-scenes-item:hover {
  transform: translateY(-10px);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.video-thumbnail:hover .play-icon {
  color: rgba(255, 255, 255, 1);
}

.behind-the-scenes-content {
  padding: 20px;
}

.behind-the-scenes-title {
  font-size: 20px;
  margin: 0 0 10px;
  color: #333;
}

.behind-the-scenes-description {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.learn-more-link {
  display: inline-block;
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s;
}

.learn-more-link:hover {
  color: #0056b3;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.modal-content {
  position: relative;
  margin: 10% auto;
  width: 80%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #777;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #333;
}

.modal-body {
  text-align: center;
}

.modal-video {
  width: 100%;
  height: 600px;
}


/* Estilos avanzados para la sección de Otras Opciones de la pagina noticias.html */
.other-options-section {
  padding: 80px 0;
  text-align: center;
}

.other-options-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.other-options-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  border: 1px solid #eee;
}

.other-options-image {
  width: 100%;
  height: auto;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.other-options-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.other-options-title {
  font-size: 1.8rem;
  margin: 15px 0;
  color: #ff9500;
}

.other-options-description {
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.other-options-link {
  margin-top: auto;
  padding: 12px 24px;
  background-color: #ff9500;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

.other-options-link:hover {
  background-color: #e86c00;
}

/* Estilos del botón "Up" */
.up-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e94500;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.up-button i {
  font-size: 24px;
}

.up-button:hover {
  background-color: #ff5f00;
}

.up-button.active {
  opacity: 1;
  transform: translateY(0);
}


  
  /* Estilos responsivos */
  @media screen and (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }  
    header p {
      font-size: 1rem;
      padding: 10px;
    }
    .gallery-item .overlay {
      scrollbar-color: #fff transparent;
      scrollbar-width: thin;
  
    }
  
    .gallery-item p  {
      overflow-y: scroll;
      max-height: 300px; /* Ajusta la altura máxima según tus preferencias */
  }
    .carousel {
      flex-direction: column;
    }
  
    .carousel-item {
      flex: 0 0 100%;
    }
  
    .summary-item {
      flex: 0 0 100%;
    }
  
    .character-item {
      flex: 0 0 100%;
    }
  
    .video-item iframe {
      min-height: 250px;
    }
  
    .movie-details img {
      max-height: 300px;
    }
    .faq {
      padding: 10px;
  }

  .faq h2 {
      font-size: 1.8rem;
  }

  .faq-item h3 {
      font-size: 16px;
  }

  .faq-item p {
      font-size: 14px;
  }

  .faq-item.active p {
      max-height: 1000px; /* Ajusta la altura máxima para dispositivos móviles */
  }

  .language-button span {
    display: inline;
}

.language-button i {
    display: none;
}

.language-menu {
    width: 140px;
}
.language-switcher {
  bottom: 30px;
  right: 30px;
  padding: 8px;
}


.language-switcher:hover {
background-color: rgba(255, 255, 255, 1);
}

.language-toggle {
display: none;
}

.language-label {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
color: #333;
transition: color 0.3s, background-color 0.3s;
}

.language-label:hover {
color: white;
background-color: #3498db;
}

.slider-container {
position: relative;
width: 70px;
height: 40px;
margin: 0 10px;
}

.slider-track {
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 10px;
background-color: #ccc;
transform: translateY(-50%);
border-radius: 10px;
transition: background-color 0.3s ease;
}

.slider-thumb {
position: absolute;
top: 50%;
left: 0;
width: 40px;
height: 40px;
background-color: #3498db;
transform: translateY(-50%);
border-radius: 50%;
cursor: pointer;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.language-toggle:checked + .slider-container .slider-thumb {
left: calc(100% - 40px);
background-color: #27ae60;
transform: translateY(-50%) scale(1.1);
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}
.news-carousel {
  flex-direction: column;
  align-items: center;
}

.news-item {
  max-width: 100%;
  margin-bottom: 30px;
}

.view-all-news-link {
  margin-top: 20px;
}
.other-options-list {
  gap: 20px;
}
.behind-the-scenes-carousel {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.modal-content {
  width: 90%;
}

.modal-video {
  height: 400px;
}
}  
  @media screen and (max-width: 480px) {
    header h1 {
      font-size: 1.5rem;
    }
  
    header p {
      font-size: 1rem;
      padding: 10px;
    }
  
    .gallery {
      grid-template-columns: 1fr;
    }
  
    .gallery-item img {
      height: 180px;
      border-radius: 8px;
    }
  
    .carousel-item img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border-radius: 8px;
      transition: transform 0.3s;
    }
  
    .summary-item p {
      font-size: 12px;
    }
  
    .character-item p {
      font-size: 12px;
    }
  
    .faq-item p {
      font-size: 12px;
    }
    .language-switcher {
      bottom: 30px;
      right: 30px;
      padding: 8px;
  }


.language-switcher:hover {
  background-color: rgba(255, 255, 255, 1);
}

.language-toggle {
  display: none;
}

.language-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #333;
  transition: color 0.3s, background-color 0.3s;
}

.language-label:hover {
  color: white;
  background-color: #3498db;
}

.slider-container {
  position: relative;
  width: 70px;
  height: 40px;
  margin: 0 10px;
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ccc;
  transform: translateY(-50%);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #3498db;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.language-toggle:checked + .slider-container .slider-thumb {
  left: calc(100% - 40px);
  background-color: #27ae60;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}
}