/* 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;
	font-family: 'Poppins', Arial;
}

.meu-popup-inner-content p {
    color: #555;
    font-size: 1em;
    line-height: 1.1;
    margin-bottom: 20px;
	font-family: 'Poppins', Arial;
}

/*BOTÕES DO PORTIFOLIO*/

.btn-portifolio {
	background: transparent;
	font-family: 'Poppins', Arial;
    color: #101248;
    border: none;
    padding: 13px 23px;
    border-radius: 10px;
	border: solid #101248 3px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-portifolio:hover {
	background: #101248;
	border: solid #101248 3px;
	color: #FFF;
}

/*RESPNSIVIDADE DO MÓDULO*/

@media (max-width: 1200px) {
    .meu-popup-wrapper {
        
    }
}

@media (max-width: 768px) {
    .meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
	}
	.meu-popup-wrapper.is-active .meu-popup-content {
    transform: none;
	}
	.meu-popup-wrapper{
		height: 100%;
		width: 100%;
        left: 0;
        right: 0;
        margin: auto;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}
	.meu-popup-content {
    max-width: 500px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
	}
	.btn-portifolio {
    padding: 12px 22px;
	border: solid #101248 2.5px;
    cursor: pointer;
    font-size: 0.94em;
    font-weight: 500;
	}
}

@media (max-width: 670px) {
    .meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
	}
	.meu-popup-wrapper.is-active .meu-popup-content {
    transform: none;
	}
	.meu-popup-wrapper{
		height: 100%;
		width: 100%;
        left: 0;
        right: 0;
        margin: auto;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}
	.meu-popup-content {
    max-width: 410px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
	}
	.meu-popup-inner-content p {
    color: #555;
    font-size: 0.9em;
    line-height: 1;
    margin-bottom: 20px;
	font-family: 'Poppins', Arial;
	}
}

@media (max-width: 530px) {
    .meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
	}
	.meu-popup-wrapper.is-active .meu-popup-content {
    transform: none;
	}
	.meu-popup-wrapper{
		height: 100%;
		width: 100%;
        left: 0;
        right: 0;
        margin: auto;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}
	.meu-popup-content {
    max-width: 360px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
	}
	.meu-popup-inner-content p {
    color: #555;
    font-size: 0.9em;
    line-height: 1;
    margin-bottom: 20px;
	font-family: 'Poppins', Arial;
	}
}

@media (max-width: 420px) {
    .meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
	}
	.meu-popup-wrapper.is-active .meu-popup-content {
    transform: none;
	}
	.meu-popup-wrapper{
		height: 100%;
		width: 100%;
        left: 0;
        right: 0;
        margin: auto;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}
	.meu-popup-content {
    max-width: 290px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
	}
	.meu-popup-inner-content p {
    color: #555;
    font-size: 0.8em;
    line-height: 1;
    margin-bottom: 15px;
	font-family: 'Poppins', Arial;
	}
}

@media (max-width: 320px) {
    .meu-popup-wrapper.is-active {
    display: flex; /* Exibe o pop-up */
    opacity: 1;
	}
	.meu-popup-wrapper.is-active .meu-popup-content {
    transform: none;
	}
	.meu-popup-wrapper{
		height: 100%;
		width: 100%;
        left: 0;
        right: 0;
        margin: auto;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}
	.meu-popup-inner-content p {
    color: #555;
    font-size: 0.74em;
    line-height: 1;
    margin-bottom: 15px;
	font-family: 'Poppins', Arial;
	}
	.meu-popup-content {
    max-width: 250px; /* Ajuste conforme necessário */
    width: 90%; /* Responsividade */
	padding: 10px;
	}
}