:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

/* Estilos para el encabezado */
.hero {
    position: relative;
    background: url('../img/uto.png') no-repeat center center/cover;
    height: 374px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: -1000;
    /* margin-top: 113px; */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(247, 184, 53, 0.2); */
}

.hero .titulo {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1rem; 
    font-weight: bold;
    position: relative;
}

.hero .titulo {
    display: flex;
    flex-direction:column;
    gap:15px;
}

.hero .titulo strong {
    font-size: 25px; 
}


/* Responsive Design */
@media (min-width: 768px) {
    .hero{
        height: 374px;
        background-position-y:10%;
        /* object-fit: cover; */
    }

    .hero .titulo {
        width: 50%;
        font-size: 2rem;
    }
    
    .hero .titulo strong {
        /* font-size: 40px; */
    }
}