/* Boletin Section */
.boletin-section {
	background-color: #ffffff;
	padding: 64px 0;
}

.boletin-content {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
	align-items: center;
	gap: 48px;
}

.boletin-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.boletin-title {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.2;
}

.boletin-description {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

.boletin-form-wrapper {
	display: flex;
	justify-content: flex-end;
}

.boletin-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 640px;
}

.boletin-form-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
}

.boletin-input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
	font-size: 15px;
	line-height: 1.5;
	color: #111827;
	box-sizing: border-box;
}

.boletin-input::placeholder {
	color: #9ca3af;
}

.boletin-button {
	padding: 14px 28px;
	border-radius: 6px;
	border: none;
	background-color: #0070c1;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
	white-space: nowrap;
}

.boletin-button:hover {
	background-color: #005a99;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.boletin-privacy {
	display: flex;
	align-items: center;
}

.boletin-privacy-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #4b5563;
	cursor: pointer;
}

.boletin-privacy-label input[type='checkbox'] {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #d1d5db;
}

.boletin-privacy-label a {
	color: #0070c1;
	text-decoration: underline;
}

.boletin-privacy-label a:hover {
	color: #005a99;
}

@media (max-width: 1024px) {
	.boletin-section {
		padding: 56px 0;
	}

	.boletin-content {
		gap: 40px;
	}

	.boletin-title {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.boletin-section {
		padding: 48px 0;
	}

	.boletin-content {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.boletin-form-wrapper {
		justify-content: flex-start;
	}

	.boletin-form-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.boletin-button {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.boletin-section {
		padding: 40px 0;
	}

	.boletin-title {
		font-size: 24px;
	}

	.boletin-description {
		font-size: 15px;
	}

	.boletin-privacy-label {
		align-items: flex-start;
	}
}


