footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    transition: background 0.3s linear;
    background-color: #a64646;
}

.footer-container {
    max-width: 1920px;
    padding: 30px 40px;
    margin: auto;

}

.conteudo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.profile .area-logo{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile .area-logo img {
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}


.area-logo .logo-footer {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 1rem 0 0;
    color: #fff;
}

.area-logo button {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 22px;
    cursor: pointer;
}




.description {
    max-width: 800px; 
    margin-bottom: 1.25rem;
    
}

.description p{
    color: #fff;
    font-weight:400 ;
    line-height: 28px;
    text-align: justify;
    padding: 0 40px 0 0;


}

.footer-container ul {
    display: block;
}

.social-footer a {
    color: #fff;
    margin-right: 23px;
    font-size: 24px;
}

.social-footer a:hover {
    color: #313131;
}

.servicos-content {
    display: flex;
}

.servicos-footer {
    margin-right: 40px;
}

li.servicos-nome {
    color: #fff;
    font-weight: 600;
}

.servicos-footer li a {
    color: #fff;
    padding-bottom: 1px;
    font-weight: 400;
}

.servicos-footer li a:hover {
    color: #313131;
}

.servicos-footer li {
    margin-bottom: 10px;
    color: #fff;
}



footer hr {
    height: 1px;
    border: none;
    background-color: #fff;
    margin-bottom: 1rem;
}

 .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    
} 

.copy-right {
    display: flex;
    color: #fff;
    align-items: center;
} 

.copy-right span {
    margin-left: 8px;
    font-weight: 400;
    letter-spacing: 0.135rem;

}


@media screen and (max-width: 768px) {

    .conteudo-footer {
        /* flex-wrap: wrap; */
        justify-content: left;
    }
    
    .servicos-content {
        flex-wrap: wrap;
        justify-content: left;
    }
    .servicos-footer {
        margin-left: 0;
        margin-right: 40px;
    }
    
    .social-footer {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
        
    }
    
    @media screen and (max-width: 510px) {
        .service-footer {
            margin-bottom: 8px;
        }
    
        .copy-right {
            margin-bottom: 8px;
        }
        
        .conteudo-footer {
            display: block;
        }
        
    }