.gdpr-popup {
                            position: fixed;
                            bottom: 20px;
                            left: 20px;
                            max-width: 300px;
                            background: #f0f0f0;
                            padding: 15px;
                            border-radius: 5px;
                            box-shadow: 0 0 10px rgba(0,0,0,0.1);
                            z-index: 1000;
                            font-size: 14px;
                            display: none;
                        }
                        .gdpr-popup p {
                            margin-bottom: 10px;
                        }
                        .gdpr-popup button {
                            background: #007bff;
                            color: white;
                            border: none;
                            padding: 8px 15px;
                            border-radius: 3px;
                            cursor: pointer;
                            margin-right: 10px;
                            font-size: 12px;
                        }
                        .gdpr-popup button.decline {
                            background: #f8f9fa;
                            color: #212529;
                            border: 1px solid #dee2e6;
                        }
                    
/* --- Estilos para la galería de videos --- */
.video-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.video-item {
    flex: 0 1 calc(33.333% - 22px);
    box-sizing: border-box;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-item .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* Proporción 9:16 para videos verticales */
    border-radius: 10px;
    overflow: hidden;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    margin-top: 15px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Responsive: para tablets */
@media (max-width: 1024px) {
    .video-item {
        flex: 0 1 calc(50% - 20px);
    }
}

/* Responsive: para móviles */
@media (max-width: 767px) {
    .video-item {
        flex: 0 1 100%;
        /* Eliminamos el padding y borde lateral para que el video ocupe más espacio */
        padding-left: 5px;
        padding-right: 5px;
        border-left: none;
        border-right: none;
    }
}