         :root {

            --color-primario: #7d2447;
            --color-primario1: #671c33;
            --color-primario2: #6f1728;
            --color-primario3: #861943;
            --color-secundario: #828386;
            --color-oscuro: #4a5350;
            --color-resalte: #bfb591;
        }

        body {
            background-color: #f7f7f7;
            font-family: "Inter", sans-serif;
        }

        /* ================= NAVBAR ================= */
        .navbar-bg {
            background: url('../img/navbar.jpg') center / cover no-repeat;
        }

        .navbar-overlay {
            width: 100%;
            display: flex;
    align-items: center;
        }

        /* ================= BANNER ================= */
        .banner {
            min-height: 70vh;
            background: url('../img/bg-def.png') center / cover no-repeat;
            display: flex;
            align-items: center;
        color: white;
        }

        .banner::after {
            content: "";
            position: absolute;
            inset: 0;
            
        }

        
        
        /* ================= FOOTER ================= */
        footer.footer-bg {
            background: url('../img/navbar.jpg') center / cover no-repeat;
            color: white;
        }

        

            .card-custom {
            border: 2px solid var(--color-oscuro);
            border-radius: 12px;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .card-custom:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
        }

        .faq-item {
            border: 2px solid var(--color-primario);
            border-radius: 12px;
            padding: 18px;
            background: white;
        }

.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url('../img/bg-def.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Contenido */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 5%;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #eaeaea;
}

/* Botón */
.hero-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ed7615;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background-color: #ff8a32;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
}


    