.nr-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.nr-popup-overlay.nr-popup-ativo {
	display: flex;
}

.nr-popup-caixa {
	position: relative;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: nrPopupEntrada 0.25s ease;
}

@keyframes nrPopupEntrada {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.nr-popup-imagem {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	display: block;
	border-radius: 6px;
	margin: 0 auto;
}

.nr-popup-link {
	display: block;
	line-height: 0;
}

.nr-popup-fechar {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.nr-popup-fechar:hover {
	background: #f2f2f2;
}

@media (max-width: 480px) {
	.nr-popup-fechar {
		top: -14px;
		right: 0;
	}
}
