/* ================================
   HERO - CONTACTO (CLON DEL INDEX)
================================ */
.general-hero {
    width: 100%;
    height: 60vh;
    background-image: url("../IMAGENES/BannerIndex/JPG/865e10a9fb3fa756cbbeba4131a3c997.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
}



.general-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
    z-index: 1;
}

.general-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    text-align: center;
}

.general-hero h1 {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    text-align: center;
    
}
.general-hero-content p {
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
}

