footer {
    padding-bottom: 90px;
}

.cta__footer img {
    display: block;
}

footer .principal {
    padding-top: 90px;
}

footer .principal .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .social svg {
    fill: var(--azul);
    width: 30px;
    height: 30px;
}

footer ul {
    display: flex;
    align-items: center;
}

footer ul li a {
    display: block;
    text-transform: uppercase;
    color:#000;
    padding: 20px;
}

footer .copy .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px #dedede solid;
    padding-top: 50px;
    margin-top: 50px;
}

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;
}
