/**
 * Vestajets — Footer
 */

.footer {
    background: #ffffff;
    width: 100%;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
    color: #001e42;
    font-family: 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 30, 66, 0.08);
}

.footer * {
    box-sizing: border-box;
}

.footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
}

/* —— Izquierda: redes + legal —— */
.footer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    order: 2;
}

@media (min-width: 900px) {
    .footer__left {
        align-items: flex-start;
        flex: 1 1 0;
        order: 0;
    }
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.footer__socials a {
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__socials a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.footer__socials img {
    width: clamp(2.35rem, 4vw, 2.85rem);
    height: auto;
    display: block;
}

.footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
}

@media (min-width: 900px) {
    .footer__legal {
        align-items: flex-start;
        text-align: left;
    }
}

.footer__legal a,
.footer__legal li {
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 400;
    color: #001e42;
    text-decoration: none;
    line-height: 1.45;
}

.footer__legal a:hover {
    text-decoration: underline;
}

/* —— Centro: logo —— */
.footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

@media (min-width: 900px) {
    .footer__center {
        flex: 0 0 auto;
        order: 0;
    }
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo {
    width: clamp(11rem, 20vw, 16rem);
    height: auto;
    display: block;
}

/* —— Derecha: contacto —— */
.footer__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.85rem, 1.5vw, 1.1rem);
    order: 3;
}

@media (min-width: 900px) {
    .footer__right {
        align-items: flex-end;
        flex: 1 1 0;
        order: 0;
    }
}

.footer__contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
    width: 100%;
    max-width: 22rem;
}

.footer__contact-text {
    text-align: right;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-weight: 400;
    color: #001e42;
    line-height: 1.4;
}

.footer__contact-text a {
    color: #001e42;
    text-decoration: none;
}

.footer__contact-text a:hover {
    text-decoration: underline;
}

.footer__contact-text p {
    margin: 0;
}

.footer__contact-icon {
    width: clamp(1.1rem, 1.6vw, 1.3rem);
    height: auto;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 2000px) {
    .footer {
        padding: 3.75rem clamp(4rem, 5vw, 5rem);
    }

    .footer__inner {
        max-width: 1680px;
    }

    .footer__socials img {
        width: 3rem;
    }

    .footer__logo {
        width: 17.5rem;
    }

    .footer__legal a,
    .footer__legal li {
        font-size: 1.1rem;
    }

    .footer__contact-text {
        font-size: 1.05rem;
    }

    .footer__contact-icon {
        width: 1.35rem;
    }

    .footer__contact-row {
        max-width: 26rem;
    }
}

@media (min-width: 2560px) {
    .footer {
        padding: 4.25rem 6rem;
    }

    .footer__inner {
        max-width: 2100px;
    }

    .footer__socials img {
        width: 3.25rem;
    }

    .footer__logo {
        width: 19rem;
    }

    .footer__legal a,
    .footer__legal li {
        font-size: 1.2rem;
    }

    .footer__contact-text {
        font-size: 1.15rem;
    }

    .footer__contact-icon {
        width: 1.45rem;
    }
}

@media (max-width: 899px) {
    .footer__inner {
        align-items: center;
        text-align: center;
    }

    .footer__left,
    .footer__center,
    .footer__right {
        width: 100%;
        align-items: center;
    }

    .footer__contact-row {
        justify-content: center;
        max-width: 100%;
    }

    .footer__contact-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer__contact-row {
        max-width: 100%;
    }
}
