/* Estilos para el video */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-container video {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.01);
}

.video-overlay {
    background: rgba(0,0,0,0.7);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.6);
}

.btn-play {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-play:hover {
    transform: scale(1.1);
    background-color: #0b5ed7 !important;
}

/* Estilos para controles de video personalizados (opcional) */
.video-container::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.video-container::-webkit-media-controls-play-button {
    background-color: #0d6efd;
    border-radius: 50%;
}