/* Estilos adicionales */

        .fondo {
            background: linear-gradient(184deg, #f5faf9,#c7d0f0);
        }
        
        .video_16-9 {
        max-width: 750px;
        border-radius: 12px;
        border: 3px solid #6348b6;
        }
        .contenedor-pag {
        max-width: 900px;
        margin: 0 auto;
        padding: 15px;
        }
        
        .recuadro {
        border: 2px solid #000;
        padding: 0 15px;
        }
        
        legend, .subtitulo {
        background: #6348b6;
        padding: 5px 15px;
        color: #fff;
        }
        legend h3 {color: #fff;}
        
        /* Estilo para miniaturas */
        .img-thumbnail {
            width: 257px;
            height: auto;

        }
        /* Contenedor para la cuadricula */
        .gallery-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }
        
        /* .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 5px;
        } */
    
        .gallery-item {
            margin-bottom: 0px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            cursor: zoom-in;
        }
        .gallery-item video {
            width: 100%;
            height: auto;
        }

        .lightbox {
            width: 100%;
        }
        
        .lightbox .lb-image {
            display: block;
            height: auto;
            width: fit-content !important;
            max-width: 1400px !important;
            max-height: 90vh !important;
            margin: auto;
        }
        
        
        @media print {
        .header1, .contenedor-pag {
        padding: 15px 7%;
        }
        .img-thumbnail {
            width: 297px;
        }
        }


/* Estilos de Portada */
        
        .p-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .p-image {
            width: 100%;
            height: auto;
            aspect-ratio: 0.773;
            object-fit: cover;
            display: block;
        }
        .p-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
            padding: 40px 40px 70px 70px;
            color: white;
        }
        .p-logo {
            position: absolute;
            top: 40px;
            left: 50px;
            width: 310px;
            background: rgb(255 255 255 / 70%);
            padding: 10px 15px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            font-size: 18px;
        }
        .p-logo img {
            height: 70px;
            margin-right: 10px;
        }
        .p-title {
            font-size: 33px;
            font-weight: 700;
            margin: 10px 0;
            color: #f8d148;
        }
        .p-subtitle {
            font-size: 35px;
            font-weight: 600;
            margin: 5px 0;
            line-height: 1.2;
        }
        .p-modality {
            margin: 30px 0;
            font-size: 23px;
            color: #ececec;
        }



/* Estilos de Contador */

        .barra-contador {
            background: #e20d0d;
            color: #fff;
            padding: 10px;
            font-size: 18px;
            position: fixed;
            bottom: 0;
            width: 100%;
            display: grid;
            grid-template-columns: 50% 50%;
            gap: 20px;
            align-items: center;
            z-index: 5;
        }

        .img-cta {
        position: fixed;
        bottom: 39px;
        left: 15%;
        height: 140px;
        z-index: 10;
        }
        
        @media screen and (max-width: 750px) {
            .barra-contador {padding: 7px 5px; gap: 10px;}
            .img-cta {
            height: 90px;
            bottom: 40px;
            left: 0;
            }
        }
        @media screen and (max-width: 280px) {
            .img-cta {
            display: none;
            }
        }
        
        .reloj {
            font-weight: 700;
            font-size: 20px !important;
            color: yellow;
            line-height: 1.1 !important;
        }
        .leyendas {
            display: flex;
            gap: 11px;
        }
        .leyenda {
            font-size: 11.5px !important;
        }


/* Lightbox */

.lb-nav a.lb-next {
    background: url(../imagenes/elementos/fle_der.svg) right 48% no-repeat !important;
    opacity: 1 !important;
}
.lb-nav a.lb-prev {
    background: url(../imagenes/elementos/fle_izq.svg) left 48% no-repeat !important;
    opacity: 1 !important;
}
