﻿footer {
    background-color: #1f3156;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 4.75rem;
    border-radius: 1rem 1rem 0 0;

}

.footer-itens{
    display:flex;
    justify-content: space-between;
    padding: 4rem;
}

.footer-logo {
    width: 13.375rem;
    height:auto;
}

.footer-contatos {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin: 25px 0;
}

    .footer-contatos span {    
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contatos span img {
        height: auto;
        width: 100%
    }
    
    .footer-contatos p {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: Maven Pro,sans-serif;
        font-weight: 500;
        gap: 10px;
        margin: 8px 0;
    }

.footer-social{
    display:flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #fff;
    -webkit-clip-path: circle(50%);
    clip-path: circle(50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-social a img{
        height: 20px;
        width: 20px;
    }

.footer-faixa {
    background-color: #c93d06;
    width: 100%;
    height: 4.0625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

    .footer-faixa p {
        font-size: .875rem;
        font-family: Maven Pro,sans-serif;
        color: #dbdbdb;
        text-align: center;
    }

.footer-navigation{
    display: flex;
    color: white;
    gap: 50px;
}

    .footer-navigation li {
        font-family: Maven Pro,sans-serif;
        font-size: 1rem;
        color: #e1e1e1;
        margin: 10px 0;
        cursor: pointer;
    }

    .footer-navigation li a{
        text-decoration: none;
        color: white;
    }

.footer-navigation ul {
    padding-left: 0;
}


@media(max-width: 800px) {

    .footer-itens {
        display: block;
        text-align: center;
    }

    .footer-contatos {
        display: flex;
        align-items: center;
    }

        .footer-contatos p {
            margin: 0px 0;
        }

    .footer-social {
        justify-content: center;
    }

    .footer-navigation {
        display: none
    }
}

@media(max-width: 480px) {
    .footer-faixa {
        height: 6rem;
    }

    .footer-faixa p {
        margin: 50px;
    }
}