/* Overlay */
.wg-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, 0.5);
	backdrop-filter: blur(6px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	}

/* Modal */
.wg-modal {
	width: 100%;
	max-width: 760px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.25);
	overflow: hidden;
	transform: translateY(20px);
	opacity: 0;
	transition: all 320ms ease;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 0;
	}

/* Content (texto) */
.wg-content {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	}

.wg-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0b3b2f;
	}

.wg-text {
	font-size: 0.98rem;
	color: #334047;
	line-height: 1.45;
	}

.wg-actions {
	margin-top: 8px;
	display: flex;
	gap: 10px;
	align-items: center;
	}

.wg-btn-primary {
	background: #0b7a5e;
	color: white;
	border: none;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	}

.wg-btn-secondary {
	background: transparent;
	border: 1px solid #cfd8d4;
	color: #334047;
	padding: 9px 12px;
	border-radius: 8px;
	cursor: pointer;
	}

.wg-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #55656b;
	}

/* Visual (imagem / rótulo) */
.wg-visual {
	background: linear-gradient(180deg, #f8fbfa, #eef7f3);
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../imagens/frascos/frascos.avif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	}

.wg-bottle {
	width: 220px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(11, 122, 94, 0.12);
	object-fit: contain;
	background: #e9f6f0;
	padding: 12px;
	}

/* Aparecer animação */
.wg-overlay.show { display: flex; }
.wg-overlay.show .wg-modal { transform: translateY(0); opacity: 1; }

/* Close button (canto) */
.wg-close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(255,255,255,0.85);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 15%;
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	}

/* Responsivo */
@media (max-width: 820px) {
	.wg-modal { grid-template-columns: 1fr; max-width: 520px; }
	.wg-visual { padding: 14px; }
	.wg-bottle { width: 180px; }
	}