footer {
    padding: 90px 0;
    background: #044c5e;
    color: #fff;
    font-family: 'Bicyclette', sans-serif;
}

footer h3 {
    font-size: 24px;
    display: table;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: 'Bicyclette', sans-serif;
}

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;
    flex-direction: column;
}

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

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

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

footer .newsletter > p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
}

footer .newsletter form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

footer .newsletter form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    background: #fff;
    flex: 1;
    font-family: var(--font);
    width: 100%;
}

footer .newsletter .campos p {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 100%;
    justify-content: space-between;
    position: relative;
}


footer .newsletter .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    color: #fff;
    background: #044c5e;
    text-align: center;
    margin: 0;
    padding: 15px;
    font-size: 18px;
}

footer .newsletter input[type="submit"] {
    background: #1a7efb;
    padding: 15px 35px;
    color: #fff;
    border-radius: 5px;
    border: 0;
    font-family: var(--font);
    cursor: pointer;
    font-size: 14px;
}

footer .contato span strong {
    display: block;
}

.copyright {
    border-top: 1px solid #fff;
    margin-top: 60px;
    padding-top: 30px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
}

.copyright .left {
    text-align: center;
    width: max-content;
    padding: 0 40px;
}

.copyright .left p {
    margin-bottom: 10px;
}

.copyright a {
    color: #fff;
}

.copyright .social {
    display: flex;
    gap: 15px;
}

.copyright .social svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: all 0.3s ease;
}

.copyright .social svg:hover {
    fill: var(--verde);
    transform: scale(1.1);
}