/* ========== Ubicaciones Section ========== */

.ortoer-ubicaciones {
    background: #dceafa;
    padding: 60px 0;
    overflow: hidden;
}

.ortoer-ubicaciones__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Title */
.ortoer-ubicaciones__title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #0d1b2e;
    margin: 0 0 5px 0;
    line-height: 120%;
}

.ortoer-ubicaciones__title-accent {
    color: #0360D9;
}

/* Wrapper */
.ortoer-ubicaciones__wrapper {
    position: relative;
}

/* Photo */
.ortoer-ubicaciones__photo {
    width: 100%;
    height: auto;
    display: block;
}

/* Map overlays - sobresalen de la imagen */
.ortoer-ubicaciones__map {
    position: absolute;
    width: 28%;
    height: 22%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}

.ortoer-ubicaciones__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.ortoer-ubicaciones__map-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.ortoer-ubicaciones__map--left {
    top: 5%;
    left: -12%;
}

.ortoer-ubicaciones__map--right {
    top: 5%;
    right: -12%;
}

/* Labels - debajo de los mapas, dentro del área de la foto */
.ortoer-ubicaciones__label {
    position: absolute;
    top: 28%;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    width: 16%;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.ortoer-ubicaciones__label--left {
    left: 0;
}

.ortoer-ubicaciones__label--right {
    right: 0;
    text-align: right;
}

/* ========== Tablet ≤768px ========== */
@media (max-width: 768px) {
    .ortoer-ubicaciones {
        padding: 10px 0;
    }

    .ortoer-ubicaciones__title {
        font-size: 30px;
    }

    .ortoer-ubicaciones__photo {
        width: 100%;
    }

    .ortoer-ubicaciones__map {
        width: 28%;
    }

    .ortoer-ubicaciones__label {
        font-size: 14px;
    }
}

/* ========== Small mobile ≤480px ========== */
@media (max-width: 480px) {
    .ortoer-ubicaciones {
        margin-top: 20px;
    }

    .ortoer-ubicaciones__container {
        padding: 0;
    }

    .ortoer-ubicaciones__title {
        font-size: 35px;
        text-align: center;
        margin-top: 0;
        padding: 0 16px;
    }

    /* Wrapper se vuelve flex para poner mapas abajo */
    .ortoer-ubicaciones__wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .ortoer-ubicaciones__photo {
        width: 100%;
        order: 1;
    }

    /* Labels arriba de la foto */
    .ortoer-ubicaciones__label {
        position: absolute;
        top: 2%;
        width: 48%;
        font-size: 12px;
        z-index: 2;
    }

    .ortoer-ubicaciones__label--left {
        left: 2%;
    }

    .ortoer-ubicaciones__label--right {
        right: 2%;
    }

    /* Mapas abajo, lado a lado, sin márgenes ni paddings */
    .ortoer-ubicaciones__map {
        position: static;
        width: 50%;
        height: 150px;
        order: 2;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    .ortoer-ubicaciones__map iframe {
        border-radius: 0;
    }

    .ortoer-ubicaciones__map--left {
        margin: 0;
    }

    .ortoer-ubicaciones__map--right {
        margin: 0;
    }
}
