/* Custom Styles base para FUNNEL 2026 */

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efecto hover luminoso en botones principales */
.btn-luminous {
    transition: all 0.3s ease;
}
.btn-luminous:hover {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

/* Ajustes suaves en Dark Mode */
[data-bs-theme="dark"] .card {
    background-color: #212529;
    border: 1px solid #343a40 !important;
}

[data-bs-theme="dark"] .bg-body-secondary {
    background-color: #1a1d20 !important;
}

[data-bs-theme="dark"] .form-control {
    background-color: #2b3035 !important;
    color: #f8f9fa;
}

[data-bs-theme="dark"] .form-control:focus {
    background-color: #343a40 !important;
    border-color: #0d6efd;
    color: #fff;
}

[data-bs-theme="dark"] label {
    color: #adb5bd;
}

/* Helpers */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

[data-bs-theme="dark"] .glass-effect {
    background: rgba(33, 37, 41, 0.7);
}
