footer {
    background: #fff;
    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
}

footer .sobre img {
    margin-bottom: 30px;
    display: block;
    max-width: 260px;
}

footer .sobre p {
    line-height: 30px;
    margin-bottom: 30px;
    padding-right: 30px;
}

footer .sobre .dados {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

footer .sobre .dados a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

footer .sobre .dados a svg {
    width: 20px;
    height: 20px;
    fill: var(--verde);
}

footer .sobre .social {
    display: flex;
    gap: 20px;
}

footer .sobre .social a {
    display: flex;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: #878787;
}

footer .sobre .social a svg {
    width: 17px;
    height: 17px;
    fill: #fff;
}

footer .sobre .social a svg path,
footer .sobre .social a svg g {
    fill: #fff !important
}

footer .copy .container .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px #00000018 solid;
    padding-top: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

footer h2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--azul);
    font-size: 18px;
}

footer h2 strong {
    line-height: 24px;
    font-size: 24px;
    border-bottom: 2px var(--azul) solid;
    width: fit-content;
}

footer .menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .menu a {
    font-size: 16px;
    display: flex; 
    gap: 10px;
    color: var(--azul);
    align-items: center;
}

footer .menu a:hover {
    color: var(--azul-hover);
    text-decoration: underline;
}

footer .menu a:before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--verde);
    display: flex;
}

footer .contatos__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .contato .item {
    display: flex;
    gap: 10px;
    align-items: center;
}


footer .contato a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px #dedede solid;
    padding: 10px 30px;
    padding-left: 50px;
    border-radius: 40px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

footer .contato a svg {
    width: 20px;
    height: 20px;
    fill: var(--azul);
    position: absolute;
    left: 30px;
}

footer .contato a:hover {
    background: #f5f5f5;
}

footer .contato .item .icone {
    min-width: 50px;
    min-height: 50px;
    border: 2px var(--azul) solid;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
}

footer .contato .item .icone svg {
    width: 25px;
    height: 25px;
    fill: var(--azul);
}

footer .contato .item .content {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 5px;
    line-height: 18px;
}

footer .contato .item .content a {
    color: var(--azul);
}

footer .contato .item .content a:hover {
    text-decoration: underline;
}

footer .copy p {
    color: var(--azul);
    font-size: 12px;
}

footer .copy img {
    width: 60px;
    display: block;
    filter: invert(1);
    opacity: .5;
}



/* Formulario */
section.formulario {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #00000081;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 30px 0;
}

section.formulario .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.formulario .formulario__close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    box-shadow: 0 0 20px #00000081;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

section.formulario .formulario__close:before,
section.formulario .formulario__close:after {
    content: '';
    width: 20px;
    height: 2px;
    display: block;
    background: #000;
    transform: translate(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2px;
}

section.formulario .formulario__close:before {
    transform: translate(-50%) rotate(45deg);
}

section.formulario .box__form {
    background: #fff;
    padding:45px 30px;
    border-radius: 30px;
    max-width: 500px;
    width: 500px;
    font-size: 14px;
}

section.formulario .box__form h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px #dedede solid;
}

section.formulario .box__form input[type="text"] {
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    width: 100%;
    border: 1px #dedede solid;
    border-radius: 4px;
    font-size: 15px;
    height: 50px;
    box-sizing: border-box;
}

section.formulario .box__form .campo {
    margin-bottom: 15px;
    position: relative;
}

section.formulario .box__form .campo:last-child {
    margin-bottom: 0;
}

section.formulario .box__form input[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

section.formulario .box__form .campo .wpcf7-spinner {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


section.formulario .wpcf7-checkbox {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

section.formulario .wpcf7-list-item {
    margin: 0;
}

section.formulario .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 5px;
}

section.formulario .wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

section.formulario .wpcf7-not-valid-tip {
    font-size: 14px;
    padding: 10px;
    border: 1px red solid;
    padding: 5px;
    border-radius: 4px;
    margin-top: 5px;
}
