/* =========================================================
   ALFA SPORT — FOOTER
   ========================================================= */

.alfa-footer {
    width: 100%;

    background: var(--alfa-green-deep);
    color: var(--alfa-text-light);
}


/* =========================================================
   MAIN
   ========================================================= */

.alfa-footer__main {
    padding:
        var(--alfa-space-4xl)
        0
        var(--alfa-space-3xl);
}


/* =========================================================
   GRID
   ========================================================= */

.alfa-footer__grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(160px, 0.75fr)
        minmax(180px, 0.85fr)
        minmax(240px, 1fr);

    gap: 60px;
}


/* =========================================================
   BRAND
   ========================================================= */

.alfa-footer__brand {
    max-width: 340px;
}

.alfa-footer__logo-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;
}

.alfa-footer__logo {
    width: auto;
    max-width: 210px;
    max-height: 78px;

    object-fit: contain;
}

.alfa-footer__brand-name {
    color: #fff;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.18em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.alfa-footer__description {
    margin: 0 0 22px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.alfa-footer__social {
    display: flex;
    align-items: center;

    gap: 9px;
}

.alfa-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: rgba(255,255,255,0.82);

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--alfa-radius-sm);

    transition:
        color var(--alfa-transition-fast),
        border-color var(--alfa-transition-fast),
        background-color var(--alfa-transition-fast),
        transform var(--alfa-transition-fast);
}

.alfa-footer__social a:hover {
    color: #fff;

    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);

    transform: translateY(-2px);
}

.alfa-footer__social svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.alfa-footer__social a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}


/* =========================================================
   TITLES
   ========================================================= */

.alfa-footer__title {
    margin:
        4px
        0
        20px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.045em;
}


/* =========================================================
   LINKS
   ========================================================= */

.alfa-footer__links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.alfa-footer__links li {
    margin: 0 0 11px;
}

.alfa-footer__links a {
    position: relative;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    transition:
        color var(--alfa-transition-fast),
        padding-left var(--alfa-transition-fast);
}

.alfa-footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.alfa-footer__contact-list {
    display: flex;
    flex-direction: column;

    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.alfa-footer__contact-list li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: rgba(255,255,255,0.75);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.alfa-footer__contact-list a {
    color: inherit;

    transition: color var(--alfa-transition-fast);
}

.alfa-footer__contact-list a:hover {
    color: #fff;
}

.alfa-footer__contact-icon {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    margin-top: 1px;

    color: #fff;
}

.alfa-footer__contact-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.alfa-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.alfa-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-height: 58px;
}

.alfa-footer__bottom p {
    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.alfa-footer__credit a {
    color: rgba(255,255,255,0.8);
    font-weight: 600;

    transition: color var(--alfa-transition-fast);
}

.alfa-footer__credit a:hover {
    color: #fff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .alfa-footer__grid {
        grid-template-columns:
            minmax(260px, 1.2fr)
            1fr
            1fr;

        gap:
            50px
            35px;
    }

    .alfa-footer__contact {
        grid-column: 2 / 4;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .alfa-footer__main {
        padding:
            var(--alfa-space-3xl)
            0;
    }

    .alfa-footer__grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .alfa-footer__brand {
        max-width: 100%;
    }

    .alfa-footer__contact {
        grid-column: auto;
    }

    .alfa-footer__logo {
        max-width: 180px;
    }

    .alfa-footer__title {
        margin-bottom: 16px;
    }


    /* bottom */

    .alfa-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        min-height: auto;

        padding:
            18px
            0;

        gap: 7px;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {

    .alfa-footer__description {
        font-size: 13px;
    }

    .alfa-footer__links a,
    .alfa-footer__contact-list li {
        font-size: 13px;
    }

}