.section {
    position: relative;
    min-height: auto; /* Corregimos el alto exagerado */
    padding: 4rem 0; /* Damos un margen respirable pero normal */
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section__background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section__header {
    width: 100%;
}

.section__title {
    font-size: 2.2rem;
    font-family: "Lato", sans-serif;
    font-weight: 800;
    text-align: center;
    padding-top: 3rem;
    margin: 2rem 0;
}

.section__body {
    width: 100%;
    padding: 1rem 0;
    display: flex;
}

.section__column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__text {
    width: 60%;
    margin: 0 auto;
    font-size: 1.5rem;
    font-family: "Lato", sans-serif;
}

.text-center {
    text-align: center;
}

.section__image {
    position: relative;
    width: 70%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    margin: 0 auto;
}

.section__image--landscape {
    width: 90%;
    aspect-ratio: 16/9;
}

.section__image .image-container {
    height: 100%;
}

.section--light-gray {
    background-color: var(--light-gray);
}

@media screen and (max-width: 768px) {
    .section__body {
        flex-direction: column;
    }
    .section__column {
        width: 100%;
    }
    .section__text {
        width: 90%;
        margin-bottom: 2rem;
        font-size: 1.1rem; /* LETRA REDUCIDA EN MÓVIL */
    }
    .section__title {
        font-size: 1.8rem; /* TÍTULO REDUCIDO EN MÓVIL */
        padding-top: 1.5rem;
    }
}

/* =========================================
   CORRECCIÓN URGENTE: LÍNEA BLANCA SUPERIOR
========================================= */
/* Quitamos el colchón heredado ÚNICAMENTE a las primeras secciones (Inicio y Sedes) */
.section:first-child,
.section:first-of-type,
.home-slider,
.branch-intro {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Nos aseguramos de que cualquier imagen de fondo escale exactamente desde el techo */
.section__background-image,
.home-slider .image_container {
    top: 0 !important;
}