/* Estilos generales */

#cafeteria p {
    color: #1d2a5b;
}

html, body {
  height: auto !important;
  overflow-y: auto !important;
  touch-action: pan-y !important;
}

* {
  overscroll-behavior: auto;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff;
    scroll-behavior: smooth;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);

}

html {
    scroll-behavior: smooth;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f3f3f3;
    font-size: 3rem;

}

/* No se mueva horizontalmente */
html,
body {
    overflow-x: hidden;
    /* Evita que haya desplazamiento horizontal */
    width: 100%;
    /* Asegura que no haya contenido más ancho que la pantalla */
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    /* Asegura que el padding y border se incluyan dentro del ancho total */
}



/* Sub-header para redes sociales y ubicación */
.sub-header {
    background-color: #1d2a5b;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    /* Asegura que esté encima del header principal */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Sombra para separarlo del header principal */
}


.sub-header+header {
    margin-top: 45px;
    /* Asegura que no haya espacio entre el sub-header y el header */
}

/* Redes sociales */
.social-icons {
    border-radius: 0;
    display: flex;
    gap: 15px;
}

.icon-border {
    border: none;
    /* Asegúrate de que no haya bordes adicionales */
    border-radius: 0;
    /* Quitar el efecto redondeado */
    padding: 0;
    /* Eliminar cualquier padding que podría afectar */
}

#twitter {
    width: 1.3vw;
    height: 1.3vw;
    margin-top: 4px;
}

#instagram {
    width: 1.3vw;
    height: 1.3vw;
    margin-top: 4px;
}

#facebook {
    width: 1vw;
    height: 1.3vw;
    margin-top: 3px;
}

#ubicacion {
    width: 1vw;
    height: 1.3vw;
    margin-top: 2px;
}

#whatsapp {
    width: 1.3vw;
    height: 1.3vw;
    margin-top: 2px;
}

.social-icons a img {
    border-radius: 0;
    width: 25px;
    height: 25px;
    transition: transform 0.3s;
}



.simboloU {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espacio entre el ícono y el texto */
}

.simboloU img.simboloU {
    width: 20px;
    /* Controla el ancho */
    height: 20px;
    /* Controla la altura */
    max-width: 100%;
    /* Limita el tamaño máximo al contenedor */
    max-height: 100%;
    /* Limita la altura máxima */
    display: block;
    /* Asegura que se comporte como bloque */

}

h6 {
    color: transparent;
}


header {
    background-color: #ffffff;
    color: #fff;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

/* Estilo del header cuando se hace scroll */
header.scrolled {
    background-color: #555851;
    /* Color del header al hacer scroll */
    transition: background-color 0.3s ease;
}


#nav-menu.active {
    display: contents;
}

.menu-toggle {
    display: none;
    /* Se ocultará por defecto en pantallas grandes */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #1d2a5b;
}

header nav ul {
    list-style: none;
    margin: 25px;
    padding: 0;
    display: flex;
    /* Mostrará el menú normalmente en pantallas grandes */
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: #1d2a5b;
    text-decoration: none;
    font-size: 1.5vw;
    transition: color 0.5s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}


header nav ul li a:hover {
    border-bottom: 3px solid #efac40;
}

header nav ul li a.active {
    border-bottom: 3px solid #efac40;
    background-color: transparent;
}

#logoC {
    width: 3.5vw;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin-left: 9px;
}

/* FONDO*/
/* Estilos del slideshow */
#inicio {
    margin-top: 130px;
    /* Ajusta este valor según la altura del header */
}

/* Contenedor del banner */

#banner {
    margin-top: 120px;
    display: block;
    margin-bottom: 20vh;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-height: 100%;
}

.slides {
    display: block;
    /* Asegura que se muestren las imágenes */
    width: 100%;
    /* Ocupa todo el ancho disponible */
    height: auto;
    /* Ajusta automáticamente la altura */
    position: relative;
    overflow: hidden;
    /* Asegura que no se desborde */
}

.banner-image {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    /* Mantiene la proporción de la imagen */
    border-radius: 0;
    /* Elimina cualquier redondeo */
}

/* Botones de navegación */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 1vw;
    color: white;
    font-weight: bold;
    font-size: 100%;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);

}

.prev:hover,
.next:hover {
    background-color: rgba(190, 149, 15, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Estilo de los dots */
.dots-container {

    position:relative;
    margin-top: -5vh;
    /* Mueve los dots 10px arriba del borde inferior */
    width: 100%;
    text-align: center;
    z-index: 10;
    /* Asegura que los dots estén por encima de la imagen */
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #efac40;
}

/* Efecto fade para las imágenes */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}


#estrenos-semana {
    margin-top: 320px;
   
}

/* Personaliza la barra de desplazamiento en navegadores basados en WebKit */
.carousel-container::-webkit-scrollbar {
    height: 8px; /* Altura de la barra */
  }
  
  .carousel-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); /* Color de fondo con transparencia */
    border-radius: 10px;
  }
  
  .carousel-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #1d2a5b, #1d2a5b); /* Degradado moderno */
    border-radius: 10px;
    transition: background 0.3s ease;
  }
  
  .carousel-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #425ec5, #344ba0);
  }
  
  /* Para Firefox */
  .carousel-container {
    scrollbar-width: thin;
    scrollbar-color: #1d2a5b rgba(255, 255, 255, 0.1);
  }
  

.carousel-container {
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff00;
    overflow-x: hidden;
    overflow-y: visible;
    /* Oculta cualquier contenido que se salga */
    display: flex;
    justify-content: center;
    /* Centra los ítems */
    gap: 15px;
    /* Espacio entre los ítems */
    width: 100%;
    /* El carrusel ocupa todo el ancho disponible */
}

.movie-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Suave transición al moverse */
    will-change: transform;
    /* Mejora el rendimiento en el desplazamiento */
    overflow-x: scroll;
    /* Agregar scroll horizontal si es necesario */
    scroll-behavior: smooth;
    /* Para un desplazamiento suave */
    padding: 20px 0;

}

.movie-item {
    overflow:visible;
    position: relative;
    flex: 1 1 180px;
    /* Tamaño base de 180px, pero crecerá con el espacio */
    /* Limita el ancho máximo en pantallas grandes */
    transition: transform 0.3s ease;
    /* Suave transición para el crecimiento */
}

.movie-status-container-estreno {
    position: absolute;
    top: -26px;
    left: 0;
    width: 100%;
    transform: none;
    padding: 0;
    margin: 0;
    z-index: -1;
}



/* Tooltip básico */
/* Estilos del ícono de calendario */
.release-date-icon {
    position: absolute;
    top: 3%;
    right: 0;
    width: 2vw;
    font-size: 100%;
    color: #efac40;
    cursor: pointer;
    display: inline-flex;
    /* Para mantener el tamaño y forma del ícono */
    align-items: center;
    justify-content: center;
    padding: 5px;
    /* Añade padding para darle espacio al icono */
    background-color: #00000000;
    /* Fondo del ícono para que tenga contraste */
    border-radius: 50%;
    /* Forma circular */
}

.release-date-icon:hover {
    background-color: transparent;
}

.release-date-icon i:hover {
    color: #1d2a5b;
}

/* Tooltip dentro del icono */
.release-date-icon .tooltip {
    position: absolute;
    right: 50%;
    bottom: 100%; /* Hace que el tooltip esté arriba del elemento */ 
    /* Ajusta la posición sobre el ícono */
    background-color: #1d2a5b;
    /* Fondo del tooltip */
    color: #fff;
    padding: 5px 6px;
    font-size: 80%;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    white-space: nowrap;
}

/* Mostrar el tooltip cuando la clase active está presente */
.release-date-icon.active .tooltip {
    opacity: 1;
    visibility: visible;
    background-color: #efac40;
    color: #1d2a5b;
}



.hover-text {
    position: absolute;
    bottom: 10px;
    /* Posicionado hacia la parte inferior del póster */
    left: 50%;
    /* Centrado horizontalmente */
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    /* Inicialmente invisible */
    transition: opacity 0.3s ease;
    z-index: 10;
    /* Asegúrate de que esté por encima de la imagen */
    text-align: center;
    width: 90%;
    /* Ajusta el ancho del texto para evitar desbordamientos */
}

.estreno-poster-container:hover .hover-text {
    opacity: 1;
    /* Muestra el texto al hacer hover */
}

.estreno-poster-container {
    position: relative;
    width: 20vw;
    /* Ancho fijo para todos los pósters */
    height: 30vw;
    /* Ajusta la altura proporcional al ancho */
    overflow: visible;
    /* Oculta cualquier contenido que se salga */
    margin: 0 10px;
    /* Espacio entre los pósters */
}

.movie-poster-estreno {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mantiene las proporciones de la imagen, cubriendo el contenedor */
    transition: filter 0.3s ease;
    border-top-left-radius: 0 ;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* Mostrar el hover-text al pasar sobre el contenedor del póster */
.estreno-poster-container:hover .hover-text {
    opacity: 1;
    /* Muestra el texto al hacer hover */
}

/* Para oscurecer el póster cuando se hace hover */
.estreno-poster-container:hover .movie-poster-estreno {
    filter: brightness(0.5);
    /* Oscurece la imagen al hacer hover */
}

#info-pelicula {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sinopsis,
.horarios {
    padding: 20px;
    width: 50%;
}

.sinopsis {
    background-color: #f0f0f0;
}

.horarios {
    background-color: #d0d0d0;
}

#titulo-inicio {
    color: #1d2a5b;
    font-size: 2vw;
    margin-left: 0;
    display: flex;
    text-align: center;
    justify-content: center;
    font-weight: lighter;
}

#titulo-trailer {
    font-size: 2vw;
    color: #efac40;
    font-weight: lighter;
}

#trailer-destacado {
    position: relative;
    width: 100vw;
    /* Todo el ancho de la ventana */
    height: 500px;
    /* Todo el alto de la ventana */
    overflow: hidden;
    /* Para ocultar cualquier desbordamiento */
    background-color: transparent;
    /* Elimina el fondo */
    margin: 0;
    padding: 0;
}

#trailer-destacado video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    /* Asegura que el video cubra el contenedor */
    transform: translate(-50%, -50%);
    /* Centra el video */
    border: none;
    /* Asegura que no haya bordes */
}

#imagen-destacada {
    display: block;
    position: relative;
    width: 100vw;
    /* Todo el ancho de la ventana */
    height: 300px;
    /* Todo el alto de la ventana */
    overflow: hidden;
    /* Para ocultar cualquier desbordamiento */
    background-color: transparent;
    /* Elimina el fondo */
    margin: 0;
    padding: 0;
}

#imagenD {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    border-radius: 0;
    height: 100%;
    object-fit: cover;
    /* Asegura que el video cubra el contenedor */
    transform: translate(-50%, -50%);
    /* Centra el video */
    border: none;
    /* Asegura que no haya bordes */
}

#info-pelicula {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
}

.sinopsis-inicio {
    width: 50%;
    background-color: #1d2a5b;
    padding: 20px;
}

#titulo-sinopsis {
    font-size: 2vw ;
    font-weight: lighter;
    text-align: left;
    color: #ffffff;
}

#sinopsis-texto {
    text-align: justify;
    font-size: 1vw;
}

.horarios-inicio {
    width: 50%;
    background-color: #ffffff00;
    padding: 20px;
}

#titulo-horarios {
    color: #1d2a5b;
    text-align: left;
    font-size: 2vw;
    font-weight: lighter;
    margin-left: 10%;
}

#columnas-horarios {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

#lunes {
    width: 50%;
    height: 48%;
    font-size: 10px;
    margin-left: 40px;
    text-align: center;
}

#lunes-sabado {
    font-weight: lighter;
    color: black;
    margin-bottom: 0;
    font-size: 1.5vw;
}

#horarios-lunes {
    color: black;
    margin-top: 0;
    font-size: 1vw !important;
}

#domingo {
    width: 90%;
    height: 48%;
    margin-left: 0px;
    text-align: center;
}

#titulo-domingo {
    font-weight: lighter;
    color: black;
    margin-bottom: 0;
    font-size: 1.5vw;
}

#pelicula-titulo{
    font-weight: lighter;
}

#horarios-domingo {
    color: black;
    margin-top: 0;
    font-size: 1vw !important;
}

#boton-verTodas {
    text-align: center;
    width: 80%;
    height: 15%;
    border-radius: 20px;
    background-color: #efac40;
    color: #1d2a5b;
    border: none;
    font-weight: bold;
    font-size: 14px;
    margin-top: 0.2vw;
}

#boton-verTodas:hover {
    background-color: #ffc15d;
    color: #24346e;

}

/* Estilos del botón */

.button-romboide {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border: 4px solid #efac40;
    border-radius: 10px;
    color: white;
    text-align: center;
    min-width: 80px;
    text-decoration: none;
}

/* Efecto hover: El botón parece "presionado" */
.button-romboide:hover {
    transform: skewX(-30deg) translateY(3px);
    /* Empuja hacia abajo ligeramente */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7), inset -1px -1px 5px rgba(255, 255, 255, 0.2);
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border: 4px solid #e7e080;
    border-radius: 10px;
    color: #e7e080;
    text-align: center;
    min-width: 80px;
    text-decoration: none;
}

.button-container {
    text-align: center;
    margin-top: 70px;
    flex-grow: 1;
}


.button {
    display: flex;
    position: fixed;
    padding: 10px 20px;
    background: linear-gradient(145deg, #efac40, #efac40);
    /* Fondo degradado futurista */
    color: #f8f8f8;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    position: relative;
    transform: skewX(-30deg);
    /* Crear forma de romboide */
    transition: transform 0.2s, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5), inset -3px -3px 10px rgba(255, 196, 0, 0.3);
    /* Sombra externa e interna */
}

.button:hover {
    transform: skewX(-30deg) translateY(3px);
    /* Empuja hacia abajo ligeramente */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7), inset -1px -1px 5px rgba(255, 255, 255, 0.2);
    /* Reducir la sombra para simular profundidad */
}

/* Pantallas medianas */
@media (max-width: 820px) {

    .movie-status-container-promo {
    
    top: -1px !important;
    }

    .movie-status-promo {
  
    font-size: 3vw !important;
  
}

    .movie-status-container{
    position: absolute;
    top: -26px !important;
    left: 0;
    width: 100%;
    transform: none;
    padding: 0;
    margin: 0;
    z-index: -1;
}

    .movie-status-container-estreno {
    top: -26px;
}

    #instalaciones{
        margin-top: 105px !important;
      }

    .form-container {
        padding: 10px;  /* Reducir padding en pantallas pequeñas */
        max-width: 100%;  /* Hacer que el formulario ocupe el 100% del ancho disponible */
    }

    .g-recaptcha {
        margin-left: 20%;
        transform: scale(0.4);  /* Ajustar el tamaño del CAPTCHA aún más en pantallas pequeñas */
    }

    #logoC {
        width: 12vw;
    }    

    .movie-status, .movie-status-promo-sin{
        font-size: 3vw !important;
    }

    #horarios-domingo {
        font-size: 2vw !important;
    }

    #horarios-lunes{
        font-size: 2vw !important;
    }
    
    .estreno-poster-container {
        width: 40vw;
        height: 60vw;
    }

    #footer {
        padding: 5px 0;
        /* Espaciado */
        font-size: 10px;
        /* Tamaño de fuente */
    }

    #textoF {
        font-size: 12px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }

    .movie-poster, .movie-poster-sin {
        height: 300px;
        /* Un poco más pequeño en pantallas pequeñas */
    }

    #nav-menu ul li a {
        color: #ffffff !important;
        /* Cambia a blanco */
    }

    .quick-access-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: rgba(28, 43, 91, 0.9);
        /* Fondo semitransparente */
        display: flex;
        justify-content: space-around;
        padding: 15px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border-top-left-radius: 20px;
        /* Bordes redondeados en la parte superior */
        border-top-right-radius: 20px;
    }

    .quick-access-bar a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: color 0.3s ease;
    }

    .quick-access-bar i {
        font-size: 24px;
        /* Tamaño de los íconos */
        margin-bottom: 5px;
        /* Espacio entre el ícono y el texto */
    }

    .quick-access-bar a.active {
        color: #efac40;
        background-color: #00000000;
        /* Color al hacer hover o cuando la sección esté activa */
        border-bottom: none;
    }



    .quick-access-bar {
        padding: 10px 0;
    }

    .quick-access-bar a {
        font-size: 12px;
        /* Texto más pequeño en pantallas móviles */
    }

    .quick-access-bar i {
        font-size: 20px;
        /* Íconos más pequeños en móviles */
    }

    .button-container {
        margin-top: 20px;
        /* Asegúrate de que el botón no se superponga */
    }

    .social-icons img#twitter {
        width: 14px !important;
        /* Aseguramos que este tamaño se aplique */
        height: 14px !important;
    }

    .social-icons img#instagram {
        width: 15px !important;
        /* Aseguramos que este tamaño se aplique */
        height: 15px !important;
    }

    .social-icons img#facebook {
        width: 10px !important;
        /* Aseguramos que este tamaño se aplique */
        height: 15px !important;
    }

    .social-icons img#ubicacion {
        width: 12px !important;
        /* Aseguramos que este tamaño se aplique */
        height: 15px !important;
    }

    .social-icons img#whatsapp {
        width: 17px !important;
        /* Aseguramos que este tamaño se aplique */
        height: 17px !important;
    }

    /* Ajustar el espacio entre los íconos si es necesario */
    .social-icons {
        gap: 13px !important;
        /* Reducir el espacio entre íconos */
    }

    .sub-header+header {
        margin-top: 40px;
        /* Asegura que no haya espacio entre el sub-header y el header */
    }

    header {
        height: 70px;
        padding: 4px;
    }

    #logoC {
        margin-left: 10px;
        border-radius: 0;
    }

    .menu-toggle {
        display: flex;
        /* Mostrar menú hamburguesa */
        margin: 50px;
        margin-right: 15px;

    }

    .no-scroll-color {
        color: #ffffff !important;
        /* Mantener el color blanco siempre */
    }

    /* Modificaciones para el menú de hamburguesa solo en pantallas pequeñas */
    #nav-menu {
        display: none;
        /* Ocultar por defecto */
        margin-right: 100px;
    }

    header nav ul {
        display: none;
        /* Esconder las secciones en pantallas pequeñas */
    }

    #nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1001;
    }

    #nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 35px;
        list-style: none;
        text-align: center;
    }

    #titulo-horarios {
    
        font-size: 4vw;   
    }

    #nav-menu ul li a {
        color: rgb(255, 255, 255);
        font-size: 25px;
        text-decoration: none;
        font-weight: bold;
        margin-right: 30px;

    }

    #banner {
        margin-top: 108px;
        margin-bottom: 10vw;
    }

    .prev,
    .next {
        top: 35%;
        width: auto;
        padding: 10px;
    }

    .dots-container {
        bottom: 0;
        margin-top: -7vw;
        /* Mueve los dots 10px arriba del borde inferior */
    }

    .dot {
        height: 7px;
        width: 7px;
    }

    #estrenos-semana {
        margin-top: 20px;
    }

    #titulo-inicio {
        color: #1d2a5b;
        font-size: 6vw;
        margin-left: 0;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    #titulo-sinopsis {
        font-size: 4vw ;
        font-weight: bold;
        text-align: left;
        color: #ffffff;
    }

    #titulo-trailer {
        font-size: 6vw;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .carousel-container {
        gap: 5px !important;
        /* Disminuir el espacio entre los pósters en pantallas pequeñas */
    }

    #imagenD {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        border-radius: 0;
        height: 100%;
        transform: translate(-50%, -50%);
        /* Centra el video */
        border: none;
        /* Asegura que no haya bordes */
    }


    #sinopsis-texto {
        font-size: 10px;
    }

    #lunes {
        width: 70%;
        margin-left: 0;
        margin-right: 0;
    }

    #lunes-sabado {
        font-size: 12px;
    }

    #domingo {
        width: 50%;
    }

    #titulo-domingo {
        font-size: 12px;

    }

    #titulo-overlay {
        font-size: 26px;
    }

    #boton-verTodas {
        font-size: 10px;
        height: 9%;
        width: 100%;
        margin-top: 10px;
    }


    .button-romboide {
        padding: 15px 30px;
        font-size: 14px;
    }

    .button-romboide:hover {
        font-size: 14px;
        padding: 15px 30px;
    }

    .button {
        display: inline-block;
        padding: 10px 20px;
        background: linear-gradient(145deg, #ffc400, #ffc400);
        /* Fondo degradado futurista */
        color: #ffffff;
        font-weight: bold;
        font-size: 12px;
        position: relative;
        top: -9px;

    }

    .movies-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        /* Ajuste flexible del número de columnas */
        gap: 10px;
        /* Espacio entre los pósters */
    }

    /* Contenedor individual de cada póster */
    .poster-container {
        min-height: 270px;
        /* Altura mínima uniforme para los contenedores */
        width: 100%;
        /* Ancho ajustable al contenedor */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0f0f000;
        /* Fondo para visualizar el contenedor */
    }

    /* Imágenes dentro de los contenedores de los pósters */
    .movie-poster, .movie-poster-sin {
        height: 100%;
        /* Ocupa toda la altura del contenedor */
        width: auto;
        /* Mantiene la proporción de la imagen */
        object-fit: cover;
        /* Asegura que la imagen cubra sin distorsión */
        object-position: center;
        /* Centra la imagen */
    }

    #detalle-pelicula .trailer-button {
        justify-content: center;
        width: 100%;
    }

    #detalle-pelicula .trailer-poster {
        max-width: 90%;
        /* Ajusta el tamaño del póster */
        height: auto;
    }

    .product-gallery img {
        width: 50px;
        height: 50px;
        margin: 10px;
    }

    #instalaciones img {
        width: 50px;
        height: 50px;
        margin: 10px;
    }

    .horario-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        /* Reducir el tamaño mínimo de las celdas en pantallas pequeñas */
        gap: 5px;
        /* Espacio más pequeño entre las horas */
    }

    /* Ajuste de la fuente y padding para que las horas se vean mejor */
    .hora {
        padding: 5px;
        font-size: 14px;
    }

    .hora.matinee {
        font-size: 14px;

    }

    #sinposis {
        margin-top: 10px;
    }

    /*loader*/

    /* NOSOTROS*/
    /* Ajustes generales para pantallas pequeñas */
    .section {
        flex-direction: column;
        /* Cambia la orientación de las columnas a filas */
        width: 100%;
        /* Asegura que ocupen todo el ancho disponible */
        padding: 20px;
        margin: 0 auto;
        /* Centra la sección */
    }

    .mapa section,
    .section .texto,
    .mision-vision .mision,
    .mision-vision .vision,
    .donde-estamos .texto,
    .quienes-somos .texto {
        width: 100% !important;
        /* Asegura que todo el texto ocupe el 100% del ancho en pantallas pequeñas */
        max-width: 100%;
        /* Remueve cualquier limitación de ancho */
        margin: 0 auto;
        padding: 10px;
        text-align: justify;
        /* Centra el contenido */
    }

    /* Asegura que las imágenes también ocupen todo el ancho */
    .imagen-nosotros,
    .imagen-equipo,
    .imagen-instalaciones {
        width: 100%;
        max-width: 100%;
        height: auto;

    }

    /* Aumenta el tamaño de los títulos para una mejor visibilidad en pantallas pequeñas */
    .texto h2,
    .mision-vision h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* Mejora la legibilidad del texto */
    .texto p{
        font-size: 1.2rem;
        line-height: 1.6;
        text-align: justify;
        /* Alinea el texto para mejor lectura */
        margin: 0 auto;
    }

   
    .mision-vision {
        margin-bottom: 0px !important;
        /* Reduce el margen inferior entre secciones */
    }

    /* Aumenta el espacio entre las secciones para evitar que se vean amontonadas */
    .mision-vision,
    .donde-estamos,
    .equipo,
    .instalaciones {
        margin-bottom: 40px;
    }

    .cssbuttons-io-button {
        left: 0 !important;
        font-size: 2vw !important;
        margin: 0 auto;
        top: 5% !important;
        height: 8% !important;
        height: 6vw !important;
    }  
    
    #gorro{
        width: 40px;
        position: absolute;
        left: 40% !important;
      }

    .movies-container {
        display: grid;
        grid-template-columns: repeat(1, 15rem) !important;
        /* 1 columna en pantallas pequeñas */
        justify-items: center;
        /* Asegura que cada película esté centrada */
        gap: 20px;
        /* Espacio entre las películas */
        max-width: 100%;
        /* Asegura que no se exceda el ancho de la pantalla */
        margin: 0 auto;
        /* Centra el contenedor */
        margin-left: 15%;
    }

    #detalle-pelicula {
        background-size: contain;
        background-position: top center;
        height: 100%;
    }

    /*CONTACTO*/

    .contact-container,
    .form-container,
    .contacto2,
    iframe {
        width: 90%;
        /* Ajusta el ancho a un 90% del contenedor */
        margin: 0 auto;
        /* Centrará los elementos horizontalmente */
        box-sizing: border-box;
        /* Asegura que el padding y borde se incluyan en el ancho total */
    }

    .contacto-botones {
        flex-direction: row;
        /* Mantén la dirección en fila en pantallas pequeñas */
    }

    .contacto-botones a {
        flex: 1 1 40%;
        /* Ajusta a 48% en pantallas pequeñas para que quepan dos botones */
    }

    #contactoB {
        color: #000000;
    }

    #tituloC {
        font-size: 17px;
        text-align: center;
    }

    #simboloC {
        color: #000000;
    }

    .ventana-content p {

        font-size: 12px;
    }

    .form-container,
    .contacto2 {

        width: 90%;
        /* Los formularios y el iframe ocupan el ancho completo */
        min-width: 100%;
        /* Asegura que no se corten */
    }

    .contact-container {
        flex-direction: column;
        /* Asegura que el formulario y el iframe se coloquen uno debajo del otro */

    }

    .mapa-container {
        display: flex;
        justify-content: center;
        /* Centra horizontalmente */
        align-items: center;
        /* Centra verticalmente */
        width: 100%;
        /* Opcional: Ajusta según el ancho necesario */
        max-width: 600px;
        /* Limita el tamaño del mapa */
        margin: 0 auto;
        /* Centra el contenedor en la página */
    }

    #m {
        margin-bottom: 30px;
    }

    .visitanos {
        width: 100%;
        /* Ocupa todo el ancho disponible */
        text-align: center;
        /* Centra el texto */
        margin-top: 20px;
        /* Asegura que haya un espacio adecuado */
    }

    .mision-vision h2 {
        text-align: center;
        /* Asegura que los títulos estén centrados en pantallas pequeñas */
        margin: 10px auto;
        /* Resetea el margin-right a un margin centrado */
        font-size: 2rem;
        /* Ajusta el tamaño del texto para pantallas pequeñas */
        width: 100%;
        /* Asegura que ocupe todo el ancho */
    }

    .mision-vision .mision,
    .mision-vision .vision {
        width: 100%;
        /* Asegura que ambos contenedores ocupen el ancho completo */
        margin-bottom: 20px;
        /* Añade espacio entre Misión y Visión */
        text-align: center;
        /* Centra el contenido */
    }

    #anuncioimg{
        margin-top: 0;
        width: 60%;
        max-height: 100px;
        margin-top: 5%;
        }

    .oferta-icon {
        position: absolute;
        top: -18% !important;
        /* Ajusta para la distancia del borde superior */
        right: -30% !important;
        /* Ajusta para la distancia del borde derecho */
        width: 60px;
        /* Tamaño del ícono, puedes ajustarlo */
        height: 60px;
        z-index: 10;
        /* Asegura que esté por encima del póster */
        background-color: transparent;
        /* Si la imagen tiene fondo transparente */
    }

    .hoy-icon {
        position: absolute;
        top: -18% !important;
        /* Ajusta para la distancia del borde superior */
        right: 60% !important;
        /* Ajusta para la distancia del borde derecho */
        width: 60px;
        /* Tamaño del ícono, puedes ajustarlo */
        height: 60px;
        z-index: 10;
        /* Asegura que esté por encima del póster */
        background-color: transparent;
        /* Si la imagen tiene fondo transparente */
    }

    #anunciotxt{
        color: #000000;
        font-size: 3vw !important;
      }
    
      #entendidoBtn {
        margin-top: 20px;
        padding: 1vw 2vw !important;
        border: none;
        background-color: #007bff;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        font-size: 5vw !important;
      }


      #nosotros{
        flex-direction: column;
      }
    /* Ajuste de Misión y Visión para que la imagen quede arriba */
    
      .mision{
        margin-top: -50px !important;
      }

      .mision, .vision, .equipo {
        display: flex;
        flex-direction: column !important; /* Imagen arriba, texto abajo */
        align-items: center;
        text-align:justify !important;
        width: 100%;
        padding: 15px;
    }

    .politica h2{
        text-align: left !important;
    }

    .mision, .vision, .politica, .equipo {
        margin: 0 auto;
        padding-left: 50px !important; 
        width: 100%; 
        text-align: justify; 
    }

    .mision .contenedor-img, .vision .contenedor-img {
        width: 100% !important;
        display: flex !important;
        justify-content: center;
        margin-bottom: 10px; /* Espacio entre la imagen y el texto */
    }

    .mision img, .vision img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
    }


    .mision p, .vision p, .politica p, .equipo p {
        width: 90%;
        font-size: 16px;
        font-family: Arial, sans-serif;
        font-weight: normal;
        text-align: justify;
    }

    /* Asegurar que el texto dentro de la imagen no se desacomode */
    .texto-img {
        font-size: 14px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(239, 172, 64, 0.8);
        padding: 5px 10px;
        border-radius: 20px;
    }

    /* Ajustes en imágenes del equipo */
    .imagenes-equipo { 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-left: -20px !important;
    }
    
    .imagenes-equipo img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover; /* Mantiene la proporción sin distorsión */
    }
    

}



/*CARTELERA*/

#cartelera,
#proximamente {
    display: none;
    /* Asegúrate de que esté visible desde el principio */
}

.cartelera,
.proximamente {
    padding: 50px;
    background-color: #1d2a5b;
    text-align: center;
    margin-top: 100px;
}

.cartelera h2,
.proximamente h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.movies-container {
    display: grid;
    grid-template-columns: repeat(3, 10vw);
    /* 1 columna en pantallas pequeñas */
    gap: 10px;
    /* Espacio reducido entre las películas */
  
    /* Ajustar el ancho máximo del contenedor */
    margin-left: 0;
    justify-content: center;
}

/* Contenedor de los estados */


.movie-status-container {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    transform: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.movie-status-container-promo {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    transform: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.movie-status-promo {
    background-color: #141d3d;
    /* Color de fondo del cuadro */
    color: #ffffff;
    /* Color del texto */
    font-weight: lighter;
    width: 100%;
    font-size: 1vw;
    padding: 5px 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.movie-status-promo-sin {
    background-color: #141d3d;
    /* Color de fondo del cuadro */
    color: #ffffff;
    /* Color del texto */
    font-weight: lighter;
    width: 100%;
    font-size: 1vw;
    padding: 5px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}


/* Estilos de los cuadros de estado */
.movie-status {
    background-color: #efac40;
    /* Color de fondo del cuadro */
    color: #141d3d;
    /* Color del texto */
    font-weight: lighter;
    width: 100%;
    font-size: 1vw;
    padding: 5px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}






/* Estilos para diferentes estados */
.movie-status.estreno {
    background-color: #efac40;
    /* Color de fondo del cuadro */
    color: #0f1631;
    /* Color del texto */
}

.movie-status.Reestreno {
    background-color: #a0f153;
    /* Color de fondo del cuadro */
    color: #161558;
    /* Color del texto */
}

.movie-status.promo {
    background-color: #9bfab0;
    /* Naranja para matiné */
    color: #1d2a5b;
    /* Color del texto */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-left: 140%;
}

.movie-status.preventa {
    background-color: #7fa9f7;
    /* Azul para preventa */
    color: #1d2a5b;
    /* Color del texto */
}

.movie-status.matine {
    background-color: #9bfab0;
    /* Naranja para matiné */
    color: #1d2a5b;
    /* Color del texto */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.movie-status.matine2 {
    background-color: #9bfab0;
    /* Naranja para matiné */
    color: #1d2a5b;
    /* Color del texto */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-left: 110%;
}

.movie-status.matine3 {
    background-color: #9bfab0;
    /* Naranja para matiné */
    color: #1d2a5b;
    /* Color del texto */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-left: 110%;
    margin-top: 10px;
}

.movie {
    overflow: visible;
    width: 200px;
    text-align: center;
    margin-bottom: 20px;
}

.movie-poster {
    width: 100%;
    /* Asegura que el ancho se ajuste al contenedor */
    height: 300px;
    /* Fija la altura de todos los pósters */
    object-fit: cover;
    /* Hace que la imagen cubra el contenedor sin perder proporción */
    object-position: center;
    /* Centra la imagen en el contenedor */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /* (Opcional) Añadir esquinas redondeadas */
}

.movie-poster-sin {
    width: 100%;
    /* Asegura que el ancho se ajuste al contenedor */
    height: 300px;
    /* Fija la altura de todos los pósters */
    object-fit: cover;
    /* Hace que la imagen cubra el contenedor sin perder proporción */
    object-position: center;
    /* Centra la imagen en el contenedor */
    border-radius: 10px;
}

.movie-poster-sin:hover {
    filter: brightness(0.5);
    /* Oscurece la imagen al hacer hover */
}


.icon-border {

    border: 1px solid #ffffff;
    /* Ajusta el color y grosor del borde */
    border-radius: 100%;
    /* Para hacer el borde redondo */
    padding: 5px 4px;
    /* Espacio entre el ícono y el borde */
    display: inline-block;
    /* Asegura que el ícono se comporte como un bloque en línea */
    transition: border 0.3s ease;
    /* Transición suave para el borde */
    font-size: 10px;
    width: 20px;
    /* Establece un ancho fijo */
    height: 20px;
}

/* Oscurecer el póster al hacer hover y mostrar el texto */
.poster-container:hover .movie-poster {
    filter: brightness(0.5);
    /* Oscurece la imagen */
}

.poster-container:hover .hover-text {
    opacity: 1;
    /* Muestra el texto al hacer hover */
}


#detalle-pelicula {
    overflow-x: hidden;
    overflow: hidden;
    display: none;
    /* Ocultar por defecto */
    padding: 50px;
    background-size: cover;
    /* Asegura que la imagen de fondo cubra todo el contenedor */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    scroll-margin-top: 20px;
}

#detalle-pelicula::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Capa oscura encima de la imagen de fondo */
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#detalle-contenido {
    position: relative;
    /* Asegura que el contenido esté por encima de la imagen de fondo */
    z-index: 2;
}



#detalle-contenido img {
    max-width: 300px;
    border-radius: 10px;
}

.movie p {
    font-weight: bold;
    font-size: 14px;
    color: #1d2a5b;
    font: larger;
}

#clasificacion {
    width: 40px;

}

#horarios-container {
    display: flex;
    flex-direction: column;
    /* Coloca Español y Subtitulado uno sobre otro */
    gap: 20px;
    /* Espacio entre Español y Subtitulado */
}

/* Títulos de los horarios */
.horario-titulo {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contenedor de las horas en cada idioma */
.horario-grid {
    display: flex;
    flex-wrap: wrap;
    /* Permite que las horas se ajusten en varias filas */
    justify-content: center;
    /* Asegura que las horas se centren en el contenedor */
    gap: 10px;
    /* Controla el espacio entre cada hora */
    margin-top: 10px;
}

/* Cada hora individual */
.hora {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    /* border: 4px solid #ddd12c;  */
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    color: white;
    text-align: center;
    min-width: 80px;
    /* Asegura que todas las horas tengan un tamaño mínimo */
}

.hora.matinee {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    text-align: center;
}


#sinopsis-container {
    margin-top: 10px;
    text-align: justify;
    max-width: 600px;
    /* Limita el ancho máximo a 600px, ajusta según sea necesario */
    margin: 0 auto;
    /* Centra la sinopsis */
}

#sinopsis {
    margin-bottom: 5px;
    /* Reduce el margen inferior del texto */
}

#fondoDetalles button {
    position: relative;
    /* Necesario para que el contenido esté por encima de la imagen de fondo */
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    /* Fondo oscuro para el contenido */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin: auto;
    max-width: 90%;
    z-index: 10000;
    /* Asegura que el contenido esté por encima del fondo */
}

.cast-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    /* Centra los actores horizontalmente */
    align-items: center;
    margin-top: 30px;
}

.cast-item {
    flex: 0 0 auto;
    text-align: center;
}

.cast-item img {
    width: 100px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s;
}

.cast-item img:hover {
    transform: scale(1.1);
}

.cast-item p {
    margin-top: 10px;
    font-size: 16px;
    color: white;
}

/*PROXIMOS ESTRENOS*/

/*PRODUCTOS*/

#productos {
    margin-top: 100px;
    display: none;
}

/* Estilos para la sección de productos */
.productos-secciones {
    text-align: center;
    margin: 20px 0;
}

.productos-link {
    font-size: 14px;
    font-weight: lighter;
    display: inline-block;
    margin: 0 20px;
    padding-bottom: 5px;
    font-size: 20px;
    color: #1d2a5b;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    transition: color 0.3s;
}

.productos-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #ffdd57;
    /* Color de la línea */
    transition: width 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.productos-link:hover::after,
.productos-link.active::after {
    width: 100%;
    /* Muestra la línea completa al hacer hover o cuando está activo */
}

.productos-link:hover {
    color: #ffdd57;
    /* Cambia el color del texto al hacer hover */
}

.productos-lista {
    text-align: center;
    margin-top: 20px;
}

.product-gallery img {
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.product-gallery img:hover {
    transform: scale(1.1);
}

.productos-link.active {
    color: #ffdd57;
    /* Cambia el color de las letras a amarillo cuando está activo */
    background-color: transparent;
}

.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1003;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Fondo oscuro */
    justify-content: center;
    align-items: center;
}

/* Contenido del modal: imagen grande */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra para resaltar la imagen */
}

/* Botón para cerrar el modal */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*NOSOTROS*/


/* Estilos generales para la sección "Nosotros" */
#nosotros {
    margin-top: 70px;
    overflow: hidden;
    display: none;
}

.fa-circle-info, .fa-handshake-angle {
    color: #efac40;
}

/* Estilos para "Quiénes Somos" */
.quienes-somos {
    background-image: url("instalaciones/NEO-308.webp");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(87, 87, 231, 0.11);
    display: flex;
    align-items: center;
    background-color: #002147;
    color: white;
    padding: 50px;
    border-radius: 0;
}

.texto-nosotros {
    margin-left: 20px;
}

/* Contenedor de Misión y Visión */
.mision, .vision {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #00214700;
    color: #000000;
}

/* Misión y Visión en dispositivos grandes */
.mision {
    flex-direction: row;
    text-align: left;
}

.vision {
    flex-direction: row-reverse;
}

/* Imágenes de Misión y Visión */
.mision img, .vision img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
}

/* Contenedor de la imagen */
.mision .contenedor-img, .vision .contenedor-img {
    position: relative;
    display: inline-block;
}

/* Texto dentro de la imagen */
.mision .texto-img, .vision .texto-img {
    font-weight: 100 !important;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #efac40;
    color: #1d2a5b;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.fa-face-laugh-squint{
    color: #efac40;
}

/* Estilos para Política */
.politica {
    color: #000000;
    background-color: #00214700;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
}

/* Estilos para Nuestro Equipo */
.equipo {

    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    background-color: #00214700;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
}

.imagenes-equipo { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.imagenes-equipo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover; /* Mantiene la proporción sin distorsión */
}


/**/
/* Estilos minimalistas y futuristas para la sección de contacto */
#contacto {
    display: none;
    margin-top: 110px;
}

.contacto {
    display: flex;
    flex-direction: row;
    /* Siempre en fila */
    justify-content: center;
    /* Centrar los botones horizontalmente */
    align-items: center;
    /* Alinear verticalmente si es necesario */
    padding: 20px;
}

.contacto-botones {
    display: flex;
    gap: 5px;
    /* Reducir el espacio entre los botones */
    justify-content: center;
    /* Asegura un espaciado más ajustado */

}

/* Ajustar los botones para que se reduzcan proporcionalmente */
.contacto-botones a {
    flex: 1 1 50%;
    /* Permite que los botones se adapten hasta un 45% del contenedor */
    text-align: center;
    padding: 10px;
    font-size: 16px;
    transition: font-size 0.3s ease;
    /* Suave transición para el cambio de tamaño */
    background-color: #efac40;
    /* Ajusta los colores a tu preferencia */
    color: white;
    border-radius: 5px;
    text-decoration: none;
}



.contacto h2 {
    font-size: 2.5rem;
    color: #ffdd57;
}

.contact-container {
    display: flex;
    /* Usar flexbox para alinear los elementos en fila */
    justify-content: space-between;
    /* Espacio entre los elementos */
    align-items: flex-start;
    /* Alineación vertical al inicio */
    margin: 20px;
    /* Espacio alrededor del contenedor */
}

.contacto form {
    flex: 1;
    width: 570px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 8px 3px 3px rgba(82, 49, 0, 0.3);
    background-color: #f1f0f0;
    border-radius: 10px;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    /* Permite que los elementos se ajusten en varias líneas si es necesario */
    gap: 20px;
    width: 100%;
    flex: 1 1 45%;
    max-width: 800px;
    /* Ajusta este valor según sea necesario */
    margin: 0 auto;
    /* Centra el contenedor */
    padding: 20px;
    /* Espacio interno */
}




#contactoB {
    font-weight: bold;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    width: 200px;
    /* Ancho fijo para que se mantengan alineados */
    text-align: center;
    background-color: #f3f3f3;
    border: none;
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#contactoB:hover {
    background-color: #efac40;
    color: #ffffff;
}

#contactoB:hover #simboloC {
    color: #efac40;
    background-color: #ffffff;
}

#contactoB:hover #contactotxt {
    color: #ffffff;
}


/* Estilos de la ventana de contacto */
.ventana {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    text-align: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#tituloventana {
    text-align: center;
}

.ventana ul {
    text-align: center;
}

.ventana-content {
    text-align: center;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.ventana-content p {
    color: #1d2a5b;
    font-size: 16px;
}

.closeB {
    position: absolute;
    top: 40px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#simboloC {
    border-radius: 50px;
    background-color: #efac40;
    padding: 20px;
    margin-bottom: 15px;
}


.contacto input,
.contacto textarea {
    width: 70%;
    height: 50px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra sutil */
    color: #555252;
}

#tituloC {
    font-size: 28px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
}

#enviar {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #efac40;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

#enviar:hover {
    transform: scale(1.1);
    background-color: #ffdd57;
    color: #fff;
}

.contacto2 {
    margin: 0 10px;
    flex: 1 1 45%;
    max-width: 570px;
    min-width: 300px;
}

#subtxt {
    font-size: 14px;
    text-align: justify;
    color: #000000d5;
    margin-top: 0px;
}

#m {
    margin-top: 0px;
    width: 100%;
    height: 360px;
    border-radius: 20px;
    border-color: #efac40;
}

/* Estilo para el botón de Leer más */
/* Estilo para el botón de flecha */
#readMoreBtn {
    display: block;
    /* Asegura que ocupe toda la línea */
    margin: 5px auto;
    /* Centra el botón */
    padding: 8px 16px;
    /* Añade relleno para que el botón sea más grande */
    border: none;
    background-color: transparent;
    border-radius: 5px;
    /* Bordes redondeados */
    cursor: pointer;
    margin-top: 20px !important;
}

#readMoreBtn::before {
    content: '';
    border: solid #cea903;
    /* Color de la flecha */
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(45deg);
    /* Flecha hacia abajo */
    transition: transform 0.3s;
}

#readMoreBtn:hover::before {
    border-color: #223fe0;
    /* Cambia el color de la flecha al hacer hover */
}

/* Flecha hacia arriba cuando se expande */
#readMoreBtn.up::before {
    transform: rotate(-135deg);
    /* Cambia la dirección de la flecha hacia arriba */
}

.quick-access-bar {
    display: none;
}


/* Contenedor del botón de tráiler */
.trailer-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 300px;
    /* Ajusta el tamaño según el póster */
    height: 450px;
    /* Ajusta el tamaño según el póster */
    margin: 20px auto;
    text-align: center;
}

/* Imagen del póster */
.trailer-button img.trailer-poster {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    /* Asegura que la imagen se ajuste al contenedor */
}

/* Icono de reproducir centrado */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cambia el contenido a un ícono de Font Awesome */
.play-icon::before {
    content: '\f04b';
    /* Código unicode del icono de play */
    font-family: 'Font Awesome 5 Free';
    /* Usa la fuente de Font Awesome */
    font-weight: 900;
    /* Usa el estilo sólido de Font Awesome */
    font-size: 40px;
    color: white;
}

/* Efecto hover en el botón de tráiler */
.trailer-button:hover .play-icon {
    background-color: rgba(47, 0, 255, 0.8);
    /* Cambia el fondo al hacer hover */
    transform: translate(-50%, -50%) scale(1.1);
    /* Amplía el icono ligeramente */
}



/*fondo estrellas*/
#cartelera,
#proximamente,
#productos,
#inicio {
    position: relative;
    overflow: hidden;
    padding: 50px;
    background-color: #00000000;
    /* Color del espacio */
    text-align: center;
    margin-top: 100px;
    color: white;
}

/* SIMBOLO CARGAR*/
#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    /* Para que permanezca en el centro de la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* Asegura que esté por encima de otros elementos */
    background-color: rgb(255, 255, 255);
    /* Opcional: fondo semitransparente */
}

.loader {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* Asegura que cubra toda la pantalla */
    height: 100vh;
    /* Asegura que cubra toda la pantalla */
    background-color: white;
    /* Fondo blanco completo */
    z-index: 10000;
    /* Por encima de todo el contenido */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    border: 5px solid #f3f3f3;
    /* Borde claro */
    border-top: 5px solid #3498db;
    /* El borde que gira */
    border-radius: 50%;
    /* Esto solo aplica a la animación circular */
    width: 60px;
    /* Ajusta el tamaño del círculo */
    height: 60px;
    /* Ajusta el tamaño del círculo */
    animation: spin 2s linear infinite;
    /* Animación de giro */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Estilo para ocultar el contenido */
#content {
    display: none;
    pointer-events: auto;
    /* Reactiva la interacción cuando se carga el contenido */

}


header {
    width: 100%;
    /* Asegura que ocupen el ancho completo */
    box-sizing: border-box;
    /* Incluye el padding y borde dentro del ancho total */
    margin: 0;
    /* Elimina cualquier margen extra */
    padding: 0;
    /* Ajusta el padding según sea necesario */
}

.poster-container {
    position: relative;
    /* Para que los elementos hijos se posicionen correctamente */
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;

}


.movie p {
    text-align: center;
    /* Para centrar el título */
    font-weight: bold;
    font-size: 18px;
    color: #1d2a5b;
}


.oferta-icon {
    position: absolute;
    top: -15%;
    /* Ajusta para la distancia del borde superior */
    right: -25%;
    /* Ajusta para la distancia del borde derecho */
    width: 150px;
    /* Tamaño del ícono, puedes ajustarlo */
    height: 150px;
    z-index: 10;
    /* Asegura que esté por encima del póster */
    background-color: transparent;
    /* Si la imagen tiene fondo transparente */
}

.hoy-icon {
    position: absolute;
    top: -15%;
    /* Ajusta para la distancia del borde superior */
    right: 75%;
    /* Ajusta para la distancia del borde derecho */
    width: 150px;
    /* Tamaño del ícono, puedes ajustarlo */
    height: 150px;
    z-index: 10;
    /* Asegura que esté por encima del póster */
    background-color: transparent;
    /* Si la imagen tiene fondo transparente */
}

#simetriaL {
    width: 100px;
    border-radius: 0;
    margin-left: 2px;
}

#simetriaL:hover {
    transform: scale(1.05);
}

/* Diseño del tráiler solo en pantallas grandes */
@media (min-width: 821px) {

    #espacio {
        display: none;
    }

    #inicio {
        display: block;
        /* Asegúrate de que esta línea esté presente */
    }

    .movies-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
        /* Columnas ajustadas al contenido */
        gap: 20px;
        /* Espacio entre los pósters */
        justify-content: center;
        /* Centra todo el grid */
        justify-items: center;
        /* Centra los elementos dentro de cada celda */
    }

    .dot{
        height: 1vw;
        width: 1vw;
    }

    .movie-poster, .movie-poster-sin {
        width: 250px;
        /* Tamaño fijo para los pósters */
        height: 400px;
        /* Ajusta la altura para mantener proporción */
        object-fit: cover;
        /* Asegura que las imágenes se vean bien */
    }

    .movie {
        display: flex;
        flex-direction: column;
        /* Apila el póster y el texto verticalmente */
        align-items: center;
        /* Alinea todo al centro horizontalmente */
    }

    .movie p {
        margin-top: 10px;
        /* Espacio entre el póster y el texto */
        text-align: center;
        /* Asegura que el texto esté centrado */
    }

    .text-overlay {
        text-align: center;
        /* Centra el texto */
    }

    .text-overlay h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .text-overlay p {
        margin-left: 25%;
        text-align: justify;
        width: 60%;
        font-size: 1rem;
    }

    #titulo-overlay {
        color: #ffffff;
        font-weight: bold;
    }

    #banner {
        max-height: 500px !important;
        /* Ajusta el tamaño máximo del banner */
        margin-bottom: 0px;
        /* Agrega un margen entre el banner y "estrenos de la semana" */
    }

    #estrenos-semana {
        margin-top: 40px;
        /* Asegura que siempre haya un margen adecuado */
    }
}

#footer {
    background-color: #1d2a5b;
    /* Color de fondo */
    color: #ffffff;
    /* Color del texto */
    padding: 5px 0;
    /* Espaciado */
    text-align: center;
    /* Alineación del texto */
    font-size: 16px;
    /* Tamaño de fuente */
}

.footer-links {
    display: inline;
}

.footer-links a {
    color: #efac40;
    /* Color de los enlaces */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

#detalle-pelicula #footer {
    display: none;
}

#regresarB {
    z-index: 200;
    padding: 10px;
    width: 80px;
    border-radius: 20px;
    margin-top: 5%;
    background-color: #1d2a5b;
}

.fa-arrow-left-long{
    color: #f0f0f0;
}

#regresarB:hover {
    background-color: #efac40;
}

/* Ensure banner height consistency on larger screens */
@media (min-width: 1400px) {
    
    #banner{
        margin-bottom: 20vh;
    }
}

@media (min-width: 1600px) {

    header nav ul li a {
        color: #1d2a5b;
        text-decoration: none;
        font-size: 1.5vw;
        transition: color 0.5s, border-bottom 0.3s;
        border-bottom: 2px solid transparent;
    }

    #banner{
        margin-bottom: 20vh;
    }
}

@media (min-width: 1800px) {

    #logoC {
        width: 3vw;
    }    

    header nav ul li a {
        font-size: 1.2vw;
    }
   
    #banner{
        margin-bottom: 10vh;
    }
}

@media (min-width:1921px) {
    #twitter {
        width: 1vw;
        height: 1vw;
        margin-top: 4px;
    }
    
    #instagram {
        width: 1vw;
        height: 1vw;
        margin-top: 4px;
    }
    
    #facebook {
        width: 0.7vw;
        height: 1vw;
        margin-top: 3px;
    }
    
    #ubicacion {
        width: 0.7vw;
        height: 1vw;
        margin-top: 2px;
    }
    
    #whatsapp {
        width: 1vw;
        height: 1vw;
        margin-top: 2px;
    }
    
}

@media (min-width: 2561px) {

    #twitter {
        width: 0.6vw;
        height: 0.6vw;
        margin-top: 4px;
    }
    
    #instagram {
        width: 0.6vw;
        height: 0.6vw;
        margin-top: 4px;
    }
    
    #facebook {
        width: 0.3vw;
        height: 0.6vw;
        margin-top: 3px;
    }
    
    #ubicacion {
        width: 0.3vw;
        height: 0.6vw;
        margin-top: 2px;
    }
    
    #whatsapp {
        width: 0.6vw;
        height: 0.6vw;
        margin-top: 2px;
    }

    #logoC {
        width: 2.5vw;
    }

    header nav ul li a {
        font-size: 1vw;
    }

    #banner{
        margin-bottom: 20vh;
    }

}

.cssbuttons-io-button {

    left: 25%;
    background: #efac40;
    color: #1d2a5b;
    font-weight: bold;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 1.2vw;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #efac40;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
}

.cssbuttons-io-button .icon {
    background: #1d2a5b;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #efac40;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: white;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

@media (max-width: 345px) {
    .cssbuttons-io-button {
        left: 0 !important;
        font-size: 8px !important;
        margin: 0 auto;
        top: 5% !important;
        height: 4% !important;
    }
}

/* Estilo general del overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Contenedor del anuncio */
  .anuncio-content {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Botón */
  #entendidoBtn {
    margin-top: 20px;
    padding: 1vw 2vw;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1vw;
  }
  
  #entendidoBtn:hover {
    background-color: #0056b3;
  }

  #anunciotxt{
    color: #000000;
    font-size: 1.5vw;
  }

  #anuncioimg{
  margin-top: 0;
  width: 40%;
  max-height: 100px;
  margin-top: 5%;
  }

  .overlay i {
    color: #ffffff;
    background-color: #efac40;
    padding: 2vw;
    border-radius: 5px;
    font-size: 50px;
  }

  .preventa-date {
    position: absolute;
    top: -10px; /* Ajusta la posición vertical para que quede justo encima */
    right: 10px; /* Ajusta la posición horizontal hacia la derecha */
    background-color: #7fa9f7; /* Fondo rojo para destacar */
    color: #1d2a5b; /* Texto blanco */
    font-weight: bold;
    padding: 5px 10px; /* Espaciado interno */
    font-size: 12px; /* Tamaño de texto pequeño */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Sombra para resaltar */
    white-space: nowrap; /* Evita que el texto se parta */
  }

  .preventa-dateE {
    position: absolute;
    top: -10px; /* Ajusta la posición vertical para que quede justo encima */
    right: 10px; /* Ajusta la posición horizontal hacia la derecha */
    background-color: #efac40; /* Fondo rojo para destacar */
    color: #1d2a5b; /* Texto blanco */
    font-weight: bold;
    padding: 5px 10px; /* Espaciado interno */
    font-size: 12px; /* Tamaño de texto pequeño */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Sombra para resaltar */
    white-space: nowrap; /* Evita que el texto se parta */
  }

  #instalaciones{
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url("instalaciones/fondo_instalaciones.webp");
    margin-top: 115px;
    display: none;
  }

  #fotos {
    text-align: center;
    align-items: center;
  }
  
  #fotos img {
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }
#fotos img:hover {
    transform: scale(1.1);
}

/* Estilo exclusivo para el modal de instalaciones */
.modal-instalaciones {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content-instalaciones {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  #captionInstalaciones {
    margin: auto;
    display: block;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 18px;
  }
  
  .close-instalaciones {
    position: absolute;
    top: 40px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .close-instalaciones:hover,
  .close-instalaciones:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  .navidadL{
    position: relative;
  }

  #gorro{
    width: 40px;
    position: absolute;
    left: 20px;
    top: -9px;
    z-index: -1;
    transform: rotate(320deg);
    

  }

 /* Mensaje de éxito */
.success-message {
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #4CAF50;
    background-color: #dff0d8;
    color: #3c763d;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
  }
  
  /* Mensaje de error */
  .error-message {
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #f44336;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
  }

  .botoninicio{

    border: none;
    background-color: #1d2a5b;

  }

  #cafeteria{
    display: none;
  }

  .premios {
    display: flex;
    align-items: center; /* Alinea verticalmente los elementos */
    justify-content: center; /* Alinea horizontalmente los elementos */
    gap: 20px; /* Espacio entre los elementos */
    margin: 20px 0; /* Margen superior e inferior */
}

#cannes{
    width: 25%;
}

.premios img {
    width: 20%; /* Ajusta el tamaño de las imágenes */
    height: auto; /* Mantén la proporción de las imágenes */
    border: none;
    border-radius: 0;

}

.captcha {
    width: 100%;  /* Hace que el contenedor del captcha ocupe el 100% del espacio disponible */
    margin: 15px 0;  /* Ajusta el margen superior e inferior */
    display: flex;
    justify-content: center;  /* Centra el CAPTCHA horizontalmente */
}

.g-recaptcha {
    transform: scale(0.85);  /* Escala el reCAPTCHA a un tamaño más pequeño */
    transform-origin: 0 0;  /* Ajusta la posición de la escala para que se mantenga en su lugar */
}



/* --- Próximos Estrenos Rediseñados --- */
.titulo-proximos {
    font-size: 2.5rem;
    text-align: center;
    color: #9c9c9c7c;
    margin-bottom: 30px;
    font-weight: 300;
}

.estrenos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 0 20px;
}

.estreno-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.estreno-card:hover {
    transform: scale(1.03);
}

.poster-proximo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.estreno-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 42, 91, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.estreno-card:hover .estreno-overlay {
    opacity: 1;
}

.estreno-overlay h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.estreno-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.btn-vermas {
    all: unset;
    background-color: #efac40;
    color: #1d2a5b;
    border: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-vermas:hover {
    background-color: #ffc85c;
}
