/* ==========================================================================
   SITE FOOTER
   ========================================================================== */


/* ==========================================================================
   BASE
   ========================================================================== */

.site-footer {
    width: 100%;

    padding: 0;

    background: #262626;

    color: #AAAAAA;
}


/* ==========================================================================
   GRID
   ========================================================================== */

.site-footer__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(150px, .65fr)
        minmax(0, 1.15fr)
        minmax(180px, .75fr);

    gap: 42px;

    padding: 64px 0 58px;
}


/* ==========================================================================
   HEADINGS
   ========================================================================== */

.site-footer h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: .4px;
    text-transform: uppercase;
}


/* ==========================================================================
   BRAND
   ========================================================================== */

.site-footer__brand {
    min-width: 0;
}


.site-footer__logo {
    display: inline-block;

    margin-bottom: 20px;
}


.site-footer__logo img {
    display: block;

    width: auto;
    max-width: 180px;
    height: auto;
}


.site-footer__description {
    max-width: 360px;

    margin: 0 0 22px;

    color: #AAAAAA;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    line-height: 1.75;
}


/* ==========================================================================
   WHATSAPP
   ========================================================================== */

.site-footer__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 9px 15px;

    background: #25D366;

    border: 1px solid #25D366;
    border-radius: 6px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease;
}


.site-footer__wa .fa {
    margin-right: 7px;

    font-size: 16px;
}


.site-footer__wa:hover,
.site-footer__wa:focus {
    background: #20BD5A;

    border-color: #20BD5A;

    color: #FFFFFF;

    text-decoration: none;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-footer__nav ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.site-footer__nav li {
    margin-bottom: 10px;
}


.site-footer__nav li:last-child {
    margin-bottom: 0;
}


.site-footer__nav a {
    display: inline-flex;

    padding: 2px 0;

    color: #AAAAAA;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    line-height: 1.6;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.site-footer__nav a:hover,
.site-footer__nav a:focus {
    color: #FFFFFF;

    text-decoration: none;

    transform: translateX(3px);
}


/* ==========================================================================
   CONTACT
   ========================================================================== */

.site-footer__contact ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.site-footer__contact li {
    display: flex;
    align-items: flex-start;

    min-width: 0;

    margin-bottom: 16px;
}


.site-footer__contact li:last-child {
    margin-bottom: 0;
}


.site-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    margin-right: 10px;

    background: #333333;

    border-radius: 5px;

    color: #FFFFFF;

    font-size: 13px;
}


.site-footer__contact li > div {
    min-width: 0;
}


.site-footer__contact-label {
    display: block;

    margin-bottom: 3px;

    color: #888888;

    font-family: "Open Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .4px;
    text-transform: uppercase;
}


.site-footer__contact p,
.site-footer__contact a {
    margin: 0;

    color: #B3B3B3;

    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    line-height: 1.65;

    overflow-wrap: anywhere;
}


.site-footer__contact a {
    text-decoration: none;
}


.site-footer__contact a:hover,
.site-footer__contact a:focus {
    color: #FFFFFF;

    text-decoration: underline;
}


/* ==========================================================================
   SOCIAL
   ========================================================================== */

.site-footer__social > p {
    margin: 0 0 17px;

    color: #999999;

    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    line-height: 1.65;
}


.site-footer__social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.site-footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: #333333;

    border: 1px solid #444444;
    border-radius: 6px;

    color: #FFFFFF;

    font-size: 15px;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.site-footer__social-links a:hover,
.site-footer__social-links a:focus {
    background: #002EBE;

    border-color: #002EBE;

    color: #FFFFFF;

    transform: translateY(-2px);

    text-decoration: none;
}


/* ==========================================================================
   FOOTER BOTTOM
   ========================================================================== */

.site-footer-bottom {
    width: 100%;

    background: #000000;

    border-top: 1px solid #333333;
}


.site-footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-height: 64px;

    padding: 17px 0;
}


.site-footer-bottom p {
    margin: 0;

    color: #878787;

    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    line-height: 1.6;
}


.site-footer-bottom a {
    color: #AAAAAA;

    text-decoration: none;
}


.site-footer-bottom a:hover,
.site-footer-bottom a:focus {
    color: #FFFFFF;

    text-decoration: underline;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media only screen
and (min-width: 768px)
and (max-width: 991px) {

    .site-footer__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            38px
            45px;

        padding:
            55px
            0
            50px;
    }


    .site-footer__description {
        max-width: 430px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media screen and (max-width: 767px) {

    .site-footer__grid {
        display: block;

        padding: 46px 0 40px;
    }


    .site-footer__brand,
    .site-footer__nav,
    .site-footer__contact,
    .site-footer__social {
        margin-bottom: 35px;
    }


    .site-footer__social {
        margin-bottom: 0;
    }


    .site-footer__logo img {
        max-width: 160px;
    }


    .site-footer__description {
        max-width: none;
    }


    .site-footer__wa {
        width: 100%;
    }


    .site-footer__nav a {
        min-height: 34px;

        align-items: center;
    }


    .site-footer__contact li {
        margin-bottom: 14px;
    }


    .site-footer__social-links a {
        width: 44px;
        height: 44px;
    }


    .site-footer-bottom__inner {
        display: block;

        min-height: 0;

        padding: 20px 0;

        text-align: center;
    }


    .site-footer-bottom__credit {
        margin-top: 5px !important;
    }

}