/* ===== FOOTER LA FIEBRE ===== */

.site-footer {
    width: 100%;
    margin-top: 60px;
    background: #080808;
    border-top: 2px solid #d40000;
    color: #fff;
    box-sizing: border-box;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 35px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    box-sizing: border-box;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    letter-spacing: 1px;
}

.site-footer h4 {
    color: #f5d000;
    font-size: 15px;
}

.footer-brand img {
    width: 160px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-size: 20px;
}

.footer-brand span,
.footer-contact p {
    color: #cfcfcf;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-contact i {
    width: 22px;
    color: #f5d000;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 6px 0;
    transition: .2s ease;
}

.footer-links a:hover {
    color: #f5d000;
}

.footer-social > div {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: .2s ease;
}

.footer-social a:hover {
    border-color: #d40000;
    background: #d40000;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    border-top: 1px solid #222;
    padding: 16px 20px;
    color: #999;
    font-size: 13px;
    box-sizing: border-box;
}


/* ===== TABLET ===== */

@media (max-width: 800px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 35px 22px;
    }

}


/* ===== CELULAR ===== */

@media (max-width: 520px) {

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social > div {
        justify-content: center;
    }

}