/* Estilos padrão */
footer {
    background-color: #8D141A;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 7.5vw;
    color: #ccc;
}

.logo-footer {
    max-width: 300px;
    border-radius: 7px;
}

.footer-section {
    flex: 1;
    margin-right: 20px;
}

.footer-title-menu {
    color: white;
    font-family: "montserrat";
    font-weight:bolder;
    margin-top: 30px;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    color: #ccccccc3;
    text-decoration: none;
}

.footer-section ul li a{
    font-size: 11px;


}


.social-icons a {
    color: #ccc;
    margin-right: 10px;
}

.social-icons{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.fa-instagram{
    background-image: url(../icons/group397.svg);
    display: block;
    height: 40px;
    width: 40px;
    background-size: cover;
}

.fa-whatsapp{
    background-image: url(../icons/group396.svg);
    display: block;
    height: 40px;
    width: 40px;
    background-size: cover;
}

.fas{
    background-image: url(../icons/FooterArrow.svg) !important;
    display: block;
    height: 8px;
    width: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
}

.footer-section ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 3px;
}

.footer-copy{
    display: flex;
    padding: 15px 7.5vw;
    justify-content: space-between;
    background-color: #61070b;
}

.footer-copy p,a {
    font-size: 13px;
    color: white;
}

/* Media Query para dispositivos com largura mínima de 426px e máxima de 768px */
@media (min-width: 425px) and (max-width: 768px) {
    footer{
        flex-direction: row;
    }

    .footer-title-menu {
        margin-top: 0px;
    }
    
    .logo-footer {
        max-width: 20vw;
    }

}

@media (max-width: 425px) {
    footer{
        flex-direction: column;
    }

    .footer-title-menu {
        margin-top: 50px;
    }
    
    .logo-footer {
        max-width: 85vw;
    }

    .footer-copy{
        display: flex;
        flex-direction:column;
        padding: 15px 7.5vw;
        text-align: center;
        justify-content: center;
    }
    .footer-copy p,a {
        font-size: 10px;
        color: white;
    }
}