.popup-newsletter-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.popup-newsletter-overlay.popup-newsletter-visible {
	display: flex;
}

.popup-newsletter {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 860px;
	max-height: 90vh;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.popup-newsletter-imagen {
	flex: 0 0 42%;
	max-width: 42%;
	background: #f7f4ee;
}

.popup-newsletter-imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.popup-newsletter-cerrar {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #161616;
	cursor: pointer;
	z-index: 1;
}

.popup-newsletter-contenido {
	flex: 1;
	padding: 46px 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.popup-newsletter-contenido h3 {
	max-width: 380px;
	margin: 0 0 22px 0;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: normal;
	color: #161616;
	line-height: 1.35;
}

.popup-newsletter-subtitulo {
	max-width: 380px;
	margin: 0 0 32px 0;
	font-size: 14px;
	color: #6b6b6b;
	line-height: 1.7;
}

.popup-newsletter-form {
	width: 100%;
	display: flex;
	gap: 10px;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.popup-newsletter-form .newsletter-input {
	flex: 1;
	min-width: 0;
	border: 1px solid #d8d8d8;
	border-radius: 30px;
	padding: 14px 22px;
}

.popup-newsletter-form .newsletter-btn {
	border-radius: 30px;
	padding: 14px 30px;
}

.popup-newsletter-privacidad {
	margin: 22px 0 0 0;
	font-size: 12px;
	color: #9a9a9a;
}

.popup-newsletter-checkbox {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #6b6b6b;
	cursor: pointer;
}

.popup-newsletter-checkbox input {
	cursor: pointer;
}

@media (max-width: 767.98px) {
	.popup-newsletter {
		flex-direction: column;
		max-height: 95vh;
		overflow-y: auto;
	}

	.popup-newsletter-imagen {
		max-width: 100%;
		height: 180px;
	}

	.popup-newsletter-contenido {
		padding: 34px 26px;
	}
}
