﻿body {
    /* ===== HERO SECTION CON IMAGEN DE FONDO ===== */
    .hero-section

{
    position: relative;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-section .btn-light {
    font-weight: 600;
    transition: all 0.3s ease;
}

    .hero-section .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    }

/* Responsive para móviles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 350px !important;
        background-attachment: scroll !important;
    }

        .hero-section h1 {
            font-size: 1.8rem;
        }

        .hero-section p {
            font-size: 1rem;
        }
}
}
