/* Estilos adicionales para los modales */
.tab-button.active {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #4C6FFF 0%, #6D8BFF 100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 111, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 111, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #777 0%, #999 100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(119, 119, 119, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 119, 119, 0.4);
}

/*:root {
    --primary: #4C6FFF;
    --secondary: #777;
    --accent: #FFD166;
}
    */

/* Animaciones de entrada */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.modal-enter {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .max-w-4xl {
        max-width: 95vw;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}