/* Custom Styles for MobileApp.cl */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0d6efd 100%);
    min-height: 49vh;
    display: flex;
    align-items: center;
}

/* Advantage Cards Hover Effects */
.advantage-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Custom Range Slider */
.form-range {
    height: 8px;
    background: linear-gradient(to right, #0d6efd 0%, #0d6efd 100%);
    border-radius: 5px;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    border: 3px solid #ffffff;
}

.form-range::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
}

/* Card Enhancements */
.card {
    transition: all 0.3s ease;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Navbar Enhancements */
.navbar-brand:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #444 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0d6efd;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Footer Links */
footer a:hover {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Interactive Elements */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary:active {
    animation: pulse 0.3s ease;
}

/* Custom Background Gradients */
.bg-primary-subtle {
    background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%) !important;
}

.bg-success-subtle {
    background: linear-gradient(135deg, #e8f5e8 0%, #d1f2d1 100%) !important;
}

.bg-warning-subtle {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%) !important;
}

.bg-danger-subtle {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%) !important;
}

.bg-info-subtle {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
}

.bg-secondary-subtle {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%) !important;
}