/* ---------------------------------------------------- */
/* LOCATION */
/* ---------------------------------------------------- */

.location {
    width: 100%;
    height: auto;
    padding-bottom: 4rem;
}

.locationTitle {
    width: 100%;
    color: var(--Rosa);
    text-align: center;
    font-family: var(--Main);
    font-size: clamp(2.2rem, 3.5vw, 5rem);
    padding: 3rem 0 1rem;
}

.locationMaps {
    width: 100%;
    display: flex;
    place-content: center;
    padding: clamp(1.5rem, 2.5vw, 4rem) clamp(1rem, 5vw, 8rem);
}

.locationMaps iframe {
    width: 80%;
    height: clamp(22rem, 35vw, 55rem);
    border-radius: 25px;
    border: clamp(0.4rem, 0.6vw, 1rem) solid var(--Turquesa);
}

.locationContent {
    width: 100%;
    text-align: center;
    font-family: var(--Sec);
    font-weight: bold;
    font-size: clamp(1.3rem, 1.5vw, 2.2rem);
    padding: 1rem clamp(2rem, 15vw, 24rem);
    color: grey;
    line-height: 1.5;
}

.locationIcons {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem clamp(1.5rem, 4vw, 8rem);
}

.iconsImg {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    padding-right: 3rem;
}

.iconsImg a {
    height: clamp(4rem, 5vw, 7rem);
    display: flex;
    align-items: center;
}

.iconsImg a img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.icons {
    width: 40%;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1.5rem;
}

.icons a {
    display: flex;
    align-items: center;
}

.icons img {
    width: clamp(4rem, 4vw, 6rem);
    height: clamp(4rem, 4vw, 6rem);
    object-fit: contain;
}

/* ---------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------- */

.footer {
    width: 100%;
    height: auto;
    background-image: url(/assets/img/curvebgfooter.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 3rem;
}

.footerLogo {
    width: 100%;
    display: flex;
    place-content: center;
    padding-top: clamp(4rem, 7vw, 10rem);
}

.footerLogo a {
    display: flex;
    align-items: center;
}

.footerLogo a img {
    width: clamp(10rem, 14vw, 24rem) !important;
    height: auto !important;
    object-fit: contain;
}

.footerNav {
    display: flex;
    place-content: center;
}

.footerNav ul {
    display: flex;
    list-style: none;
    padding: clamp(2rem, 5vw, 7rem) 1rem clamp(3rem, 6vw, 10rem);
    gap: clamp(1.5rem, 2.5vw, 4rem);
}

.footerNav li a {
    color: white;
    font-size: clamp(1.4rem, 1.4vw, 2rem);
}

.footerNav li a:hover {
    background-color: var(--Azul);
}

/* =====================================================
   TABLET — max 1024px
   ===================================================== */
@media (max-width: 1024px) {

    .locationMaps {
        padding: 2rem 1.5rem;
    }

    .locationMaps iframe {
        width: 100%;
        border-radius: 16px;
    }

    .locationContent {
        padding: 1.5rem 3rem;
        line-height: 1.6;
    }

    .locationIcons {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1.5rem 3rem;
    }

    .iconsImg {
        width: 100%;
        justify-content: center;
        padding-right: 0;
    }

    .icons {
        width: 100%;
        justify-content: center;
        padding: 0 2rem;
        gap: 2.5rem;
    }

    .footer {
        background-image: none;
        background-color: var(--Rosa);
        padding-top: 1rem;
    }

    .footerNav ul {
        flex-direction: column;
        align-items: center;
    }

    .footerNav li a { padding: 0.5rem 1rem; }
}

/* =====================================================
   MOBILE L — 480px – 767px
   ===================================================== */
@media (max-width: 767px) {

    .locationTitle { padding: 2rem 0 0.5rem; }

    .locationMaps { padding: 1.5rem 1rem; }

    .locationMaps iframe { border-radius: 12px; }

    .locationContent { padding: 1rem 2rem; }

    .locationIcons { gap: 1.5rem; padding: 1.5rem 1rem 2.5rem; }
}

/* =====================================================
   MOBILE S — max 479px
   ===================================================== */
@media (max-width: 479px) {

    .locationMaps { padding: 1rem; }

    .locationMaps iframe { border-radius: 10px; }

    .locationContent { padding: 1rem 1.5rem; }

    .locationIcons { gap: 1.5rem; padding: 1rem 1rem 2rem; }

    .iconsImg { gap: 1.5rem; }
}