/**
 * Estilos do Front-end para Pop-ups do YTI&W CRM
 *
 * @package YTIW_CRM
 * @version 2.16.6
 */
.ytiw-crm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Começa oculto */
    justify-content: center;
    align-items: center;
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.ytiw-crm-popup-overlay.ytiw-crm-popup-visible {
    display: flex;
    opacity: 1;
}

.ytiw-crm-popup-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.ytiw-crm-popup-visible .ytiw-crm-popup-container {
    transform: scale(1);
}

.ytiw-crm-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.ytiw-crm-popup-close:hover {
    color: #000;
}

/* Garante que o formulário dentro do pop-up não tenha bordas/fundo extras */
.ytiw-crm-popup-container .ytiw-crm-form-wrapper {
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

/* --- Controle de Visibilidade do Selo reCAPTCHA v3 --- */
.grecaptcha-badge {
    visibility: hidden;
}

.ytiw-crm-v3-badge-active .grecaptcha-badge {
    visibility: visible;
}