/* POP-UP DE SAÍDA (exit-intent) */
#popup-saida {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

#popup-saida.popup-saida-visivel {
    display: block;
}

.popup-saida-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.popup-saida-conteudo {
    position: relative;
    max-width: 900px;
    width: calc(100% - 30px);
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    margin: 15px auto;
    top: 50%;
    transform: translateY(-50%);
    background: #f2f2f2;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

.popup-saida-fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #000;
    padding: 5px;
}

.popup-saida-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 30px;
}

.popup-saida-texto h2 {
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.popup-saida-texto p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.popup-saida-form {
    padding: 10px 20px;
}

.popup-saida-form .label-form {
    display: block;
    margin-top: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #555;
}

.popup-saida-form .form-control.form-text,
.popup-saida-form select.custom-select,
.popup-saida-form select.form-select {
    background-color: #ffd400 !important;
    border: none !important;
    border-radius: 4px !important;
    color: #1a1a1a !important;
    height: auto !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.popup-saida-form .form-control.form-text::placeholder {
    color: rgba(0, 0, 0, .55);
}

.popup-saida-form select.custom-select,
.popup-saida-form select.form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1a1a' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px !important;
}

.popup-saida-form button#popup-saida-enviar {
    background-color: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 16px;
    font-weight: 600;
    letter-spacing: .03em;
}

.popup-saida-form button#popup-saida-enviar:hover {
    background-color: #000 !important;
}

.popup-saida-politica {
    font-size: 12px;
    color: #444;
    margin: 14px 0;
}

.popup-saida-politica a {
    color: #444;
}

@media (max-width: 767px) {
    .popup-saida-conteudo {
        padding: 20px 15px;
    }

    .popup-saida-texto h2 {
        font-size: 22px;
    }
}

/* evita scroll do body com o pop-up aberto */
body.popup-saida-aberto {
    overflow: hidden;
}
