footer {
    background:url(../img/bg-footer.png) right bottom no-repeat #000;
    color: #fff;
}

footer .principal {
    padding: 90px 0;
}

footer .logo {
    display: table;
    margin-bottom: 30px;
}

footer .menu a {
    color: #fff;
    display: block;
    padding: 7px 0;
    font-family: var(--font-secundaria);
}

footer .menu ul li ul li a {
    font-size: 14px;
    padding-left: 15px;
}

footer .menu a:hover {
    color: var(--dourado);
}

footer .footer__right {
    background: var(--azul);
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 90px 50px;
    padding-right: 0;
}

footer .footer__right:after {
    content: '';
    width: 50000px;
    height: 100%;
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--azul);
}

footer .social {
    display: flex;
    width: 100%;
    gap: 5px;
}

footer .social a {
    display: block;
    padding: 14px;
    color: #000;
    background: var(--dourado);
}

footer .social a:hover {
    color: var(--amarelo);
}

footer .newsletter h5 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

footer .newsletter p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

footer .newsletter .wpcf7-form-control-wrap {
    flex:1px;
}

footer .newsletter input[type="email"] {
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
    background: #fff;
    border: 0;
    font-family: var(--font);
    color: #000;
}

footer .newsletter input[type="submit"] {
    background: #4f4f4f;
    height: 40px;
    display: block;
    position: relative;
    color: #fff;
    font-size: 14px;
    font-family: var(--font);
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
}

footer .newsletter .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

footer .copy {
    background: #111111;
    padding: 20px 0;
    color: #fff;
    font-size: 13px;
}



/* Popup */
section.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.popup .popup__content {
    background: #fff;
    padding: 50px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 30px #00000079;
}

section.popup .popup__content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

section.popup .popup__content h3 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

section.popup .popup__content .cta__primary {
    margin-top: 10px;
    width: 100%;
}

section.popup .popup__content .popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

section.popup .popup__content .popup__close:hover {
    color: var(--dourado);
}

section.popup form label {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

section.popup form input[type="text"],
section.popup form input[type="email"],
section.popup form input[type="tel"],
section.popup form textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 5px;
    transition: all .3s;
}

section.popup form input[type="text"]:focus,
section.popup form input[type="email"]:focus,
section.popup form input[type="tel"]:focus,
section.popup form textarea:focus,
section.popup form select:focus {
    outline: none;
    border-bottom: 1px solid var(--dourado);
    padding-left: 15px;
}

section.popup form select {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 5px;
}

section.popup form button {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
}

section.popup form br {
    display: none;
}

section.popup form .wpcf7-spinner {
    position: absolute;
    top: 25px;
    left: 10px;
}


@media (max-width: 768px) {
   section.popup .popup__content {
        width: 90%;
        max-width: 90%;
        max-width: 90%;
   }
}