/* ─── Overlay ──────────────────────────────────────────────────────────────── */

#rtm-email-popup-overlay {
    position: fixed;
    inset: 0;                          /* cobre toda a viewport */
    z-index: 99999;                    /* acima do Leaky Paywall e demais plugins */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1rem;
    box-sizing: border-box;
}

/* ─── Cartão central ───────────────────────────────────────────────────────── */

#rtm-email-popup-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─── Logo ─────────────────────────────────────────────────────────────────── */

#rtm-popup-logo {
    display: block;
    max-height: 56px;
    width: auto;
    margin: 0 auto 1.5rem;
}

/* ─── Textos ───────────────────────────────────────────────────────────────── */

#rtm-popup-title {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

#rtm-popup-desc {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.5;
}

/* ─── Formulário ───────────────────────────────────────────────────────────── */

#rtm-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#rtm-popup-email {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fafafa;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}

#rtm-popup-email:focus {
    border-color: #152E3E;
    background: #fff;
}

#rtm-popup-submit {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #DBA958;
    color: #152E3E;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

#rtm-popup-submit:hover {
    background: #c4963f;
}

#rtm-popup-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Mensagem de feedback ─────────────────────────────────────────────────── */

#rtm-popup-message {
    min-height: 1.25rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

#rtm-popup-message.success {
    color: #1a7a3a;
}

#rtm-popup-message.error {
    color: #c0392b;
}

/* ─── Link de login ────────────────────────────────────────────────────────── */

#rtm-popup-login-link {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

#rtm-popup-login-link:hover {
    color: #152E3E;
    text-decoration: underline;
}

/* ─── Acessibilidade: oculta label visualmente ─────────────────────────────── */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ─── Estado oculto (adicionado pelo JS após sucesso) ──────────────────────── */

#rtm-email-popup-overlay.rtm-hidden {
    display: none;
}

/* ─── Botão fechar ────────────────────────────────────────────────────────── */

#rtm-popup-close {
    display: block;
    margin: 12px auto 0;
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 8px;
}

#rtm-popup-close:hover {
    color: #ff0000;
}

/* ─── Mobile ───────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    #rtm-email-popup-card {
        padding: 2rem 1.25rem;
    }

    #rtm-popup-title {
        font-size: 1.2rem;
    }
}
