/* Container de todos os pop-ups (escondido por padrão) */
.meu-popup-wrapper {
    display: none; /* Inicia oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Quando o pop-up estiver visível */
.meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
}

/* Conteúdo do pop-up */
.meu-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    text-align: center; /* Centraliza o texto, ajuste se precisar */
}

.meu-popup-wrapper.is-active .meu-popup-content {
    transform: scale(1);
}

/* Botão de fechar */
.meu-popup-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1; /* Garante que o X fique bem alinhado */
}

.meu-popup-close-button:hover {
    color: #f00;
}

/* Estilo para o botão que aciona o pop-up (opcional, pode ser customizado pelo tema) */
.meu-popup-trigger {
    background-color: #fff;
	font-family: 'Poppins', Arial;
    color: #101248;
    border: none;
    padding: 13px 23px;
    border-radius: 10px;
	border: solid #fff 2px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.meu-popup-trigger:hover {
    background: transparent;
	border: solid #fff 2px;
	color: #fff;
}

/* Conteúdo interno do pop-up (para customizar a aparência do texto, imagens, etc.) */
.meu-popup-inner-content h2 {
    margin-top: 0;
    color: #333;
    font-size: 2em;
}

.meu-popup-inner-content p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 20px;
}