.contacto-hero {
    height: 40vh;
    background: url("../Imagenes/linfatico.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    font-weight: bold;
}

.contacto-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(197,122,168,0.5);
}

.contacto-hero h1 {
    position: relative;
    color: white;
    z-index: 2;
    font-size: 2rem;
    top: 30px;
}

.contacto-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
}

/* FORM */
.contacto-form {
    background: white;
    padding: 30px;
    border: 2px solid #C57AA8;
    border-radius: 15px;
}

.contacto-form h2 {
    margin-bottom: 15px;    
}

/* INFO */
.contacto-info {
    text-align: center;
}

.contacto-logo {
    width: 170px;
    margin-bottom: 20px;
}

.contacto-info p {
    line-height: 1.8;
}

.form-nota{
    font-size: 0.85rem;
    line-height: 1.8;
    color: #666;

    background: rgba(197,122,168,0.08);

    padding: 15px;
    border-radius: 10px;

    margin: 10px 0 20px;
}

.form-nota strong{
    color: #C57AA8;
}

/* DESKTOP */
@media(min-width: 768px){
    .contacto-container {
        flex-direction: row;
        align-items: center;
        justify-content: center; /* 👈 centra todo */
        gap: 60px; /* espacio entre columnas */
        max-width: 1100px;
        margin: 0 auto; /* 👈 centra el bloque completo */
    }

    .contacto-form {
        width: 50%;
    }

    .contacto-info {
        width: 40%;
    }

    .contacto-hero {
    height: 60vh;
    
    }

    .contacto-hero h1 {
   
    font-size: 2.8rem;
    
}
}