
footer {
    padding: 90px 0;
    background: #303030;
    color: #fff;
}

footer h3 {
    font-size: 18px;
    font-weight: bold;
    display: table;
    border-bottom: 3px var(--azul) solid;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

footer .sobre img {
    margin-bottom: 30px;
}

footer .sobre h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer .sobre p {
    line-height: 2;
    font-size: 14px;
    padding-right: 30px;
}

footer .menu ul {
    display: flex;
    gap:20px 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .menu ul li {
    width: calc(50% - 10px);
}

footer .menu ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .menu ul li a:before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background: var(--azul);
}

footer .menu ul li a:hover::before {
    background: #fff;
}

footer .contato p {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

footer .contato i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

footer .contato span strong {
    display: block;
}

.copyright {
    padding: 30px 0;
    background: #4b4b4b;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    font-size: 12px;
}