.hero-banner {
    position: relative;
    width: 100%;
    height: 500px; /* Ajustable según diseño */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 60px; /* Espacio para que la caja sobresalga */
}

.hero-content-box {
    background-color: #fff;
    padding: 30px 50px;
    text-align: center;
    /* box-shadow removed to blend with background */
    transform: translateY(50%); /* Hace que sobresalga hacia abajo */
    max-width: 90%;
    width: 800px;
    z-index: 10;
}

.banner-titulo {
    color: #025695;
    font-family: 'ContrafaceDisplayTitling', sans-serif;
    font-size: 3rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.banner-subtitulo-1 {
    color: #025695;
    font-family: 'ContrafaceText-Bold', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-subtitulo-2 {
    color: #f3872a;
    font-family: 'ContrafaceText-Bold', sans-serif;
    font-size: 1.4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
        margin-bottom: 80px;
    }
    
    .hero-content-box {
        padding: 20px;
        width: 90%;
    }
    
    .banner-titulo {
        font-size: 2rem;
    }
    
    .banner-subtitulo-1,
    .banner-subtitulo-2 {
        font-size: 1rem;
    }
}
