/* Estilos para modales de tutoriales */
.tutorial-panel {
    transition: transform 0.2s ease-in-out;
    border: 1px solid #ddd;
}

.tutorial-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tutorial-panel .panel-heading {
    background-color: #f8f9fa;
    border-bottom: 2px solid #398450;
}

.tutorial-panel .panel-heading h4 {
    color: #398450;
    font-weight: bold;
    margin: 0;
}

.tutorial-panel .panel-body {
    padding: 20px;
}

.tutorial-panel .panel-body p {
    color: #666;
    margin-bottom: 15px;
}

.video-modal .modal-content {
    background: #fff;
}

.video-modal .modal-header {
    background: linear-gradient(90deg, #397D54 0%, #398450 55%, #F4B400 100%);
    color: white;
}

.video-modal .modal-header .close {
    color: white;
    opacity: 0.8;
}

.video-modal .modal-header .close:hover {
    opacity: 1;
}

.btn-tutorial {
    min-width: 120px;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-tutorial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#tutorialesBtn:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .tutorial-panel {
        margin-bottom: 20px;
    }
    
    .video-modal .modal-dialog {
        margin: 10px;
    }
    
    #tutorialVideo {
        height: 150px !important;
    }
}