/* VersaPlay v3.4.3 — popup e página de contato */

html.vp-contact-open,
html.vp-contact-open body {
    overflow: hidden;
}

.vp-contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(2, 9, 20, .80);
    backdrop-filter: blur(7px);
}

.vp-contact-modal-overlay[hidden] {
    display: none !important;
}

.vp-contact-modal,
.vp-contact-page-card {
    border: 1px solid rgba(117, 211, 255, .18);
    border-radius: 22px;
    background: #0d1b2e;
    color: #edf6ff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.vp-contact-modal {
    width: min(620px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    padding: 24px;
}

.vp-contact-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.vp-contact-modal h2,
.vp-contact-page h1 {
    margin: 3px 0 0;
    color: #f4f8fd;
    font-size: clamp(1.7rem, 5vw, 2.3rem);
    letter-spacing: -.035em;
}

.vp-contact-kicker {
    margin: 0;
    color: #27c6ff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.vp-contact-intro {
    color: #98aec3;
    line-height: 1.5;
}

.vp-contact-close {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 11px;
    background: #13263d;
    color: #eaf5ff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.vp-contact-form {
    display: grid;
    gap: 13px;
    margin-top: 18px;
}

.vp-contact-form label {
    display: grid;
    gap: 6px;
    color: #d7e5f2;
    font-size: .83rem;
    font-weight: 750;
}

.vp-contact-form label small {
    color: #849bb0;
    font-weight: 500;
}

.vp-contact-form input,
.vp-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 11px;
    background: #071522;
    color: #edf7ff;
    padding: 11px 12px;
    font: inherit;
    outline: none;
}

.vp-contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.vp-contact-form input:focus,
.vp-contact-form textarea:focus {
    border-color: rgba(39, 198, 255, .60);
    box-shadow: 0 0 0 3px rgba(39, 198, 255, .08);
}

.vp-contact-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 3px;
}

.vp-contact-submit,
.vp-contact-cancel {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 11px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.vp-contact-submit {
    border: 0;
    background: #62e3a0;
    color: #062116;
}

.vp-contact-submit:disabled {
    opacity: .58;
    cursor: wait;
}

.vp-contact-cancel {
    border: 1px solid rgba(255, 255, 255, .10);
    background: #15263b;
    color: #dbe8f5;
}

.vp-contact-message {
    display: none;
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .82rem;
    line-height: 1.45;
}

.vp-contact-message:not(:empty) {
    display: block;
    background: rgba(39, 198, 255, .08);
    border: 1px solid rgba(39, 198, 255, .18);
    color: #c7eaff;
}

.vp-contact-message.is-success {
    background: rgba(98, 227, 160, .10);
    border-color: rgba(98, 227, 160, .24);
    color: #caffdf;
}

.vp-contact-message.is-error {
    background: rgba(255, 110, 137, .10);
    border-color: rgba(255, 110, 137, .24);
    color: #ffd4dc;
}

.vp-contact-footnote,
.vp-contact-destination {
    margin: 14px 0 0;
    color: #8198ad;
    font-size: .74rem;
    line-height: 1.45;
}

.vp-contact-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.vp-contact-page {
    width: min(720px, calc(100% - 24px));
    margin: 42px auto 70px;
}

.vp-contact-page-card {
    padding: clamp(20px, 5vw, 34px);
}

@media (max-width: 560px) {
    .vp-contact-modal-overlay {
        padding: 8px;
        align-items: end;
    }

    .vp-contact-modal {
        width: 100%;
        max-height: 94vh;
        padding: 18px 15px;
        border-radius: 20px 20px 12px 12px;
    }

    .vp-contact-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .vp-contact-submit,
    .vp-contact-cancel {
        width: 100%;
    }
}
