.hero {
    height: calc(100vh - 110px); /* Ajustado para considerar la altura de las dos barras */
    background-image: url('../img/inicio/banner_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero .container {
    width: 100%;
}

.hero-content {
    width: 65%;
    text-align: left; /* Cambiado a left */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content .lead {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content {
        width: 90%; /* Ajuste para pantallas más pequeñas */
        margin: 0 auto; /* Centrar en pantallas pequeñas */
    }
}