.hero-image-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-section .bg-image {
    background-image: url('assets/images/vrecha-hero.jpg');
    /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-image-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
    color: #fff;
}

.slogan {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4em;
    font-size: 30px;
    color: white;
    text-transform: uppercase;
}

/* 📱 En móviles: que el hero ocupe toda la pantalla */
@media (max-width: 768px) {
    .hero-image-section {
        min-height: 100vh;
        /* Ocupa toda la pantalla */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image-section .container {
        padding: 0 1.5rem;
    }

    .slogan {
        font-size: clamp(1.2rem, 6vw, 2.2rem);
        line-height: 1.3;
    }
}

.legal-index {
    background: #171717;
    color: rgb(218, 218, 218);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 2px solid #222;
}

.legal-index h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.legal-index .links a {
    color: rgb(218, 218, 218);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-index .links a:hover {
    color: #fff;
    /* Color del texto principal */
    text-shadow:
        0 0 5px #fff,
        /* Sombra blanca muy sutil */
        0 0 10px #fff,

}