/* =========================================================
   YO, TURO — NEWSLETTER / MAILCHIMP
   Estética alineada con el resto del sitio:
   tarjetas blancas, bordes suaves, rosa de marca y botones pill.
========================================================= */

.turo-newsletter {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.turo-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
	align-items: center;
	gap: clamp(36px, 5vw, 72px);
	width: 100%;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(17, 17, 17, 0.06);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
	box-sizing: border-box;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.turo-newsletter__content {
	min-width: 0;
}

.turo-newsletter__eyebrow {
	display: block;
	margin: 0 0 10px;
	color: rgba(17, 17, 17, 0.48);
	font-family: "Poppins", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.turo-newsletter h2 {
	margin: 0 0 14px;
	color: #111;
	font-family: "Poppins", sans-serif;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.turo-newsletter p {
	max-width: 610px;
	margin: 0;
	color: #444;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.turo-newsletter__form {
	min-width: 0;
	margin: 0;
	padding: 22px;
	border: 1px solid rgba(17, 17, 17, 0.06);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(17, 17, 17, 0.045);
	box-sizing: border-box;
}

.turo-newsletter__fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.turo-newsletter__fields input[type="email"] {
	width: 100%;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	border-radius: 999px;
	background: #f8f8f8;
	color: #111;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 52px;
	outline: 0;
	box-shadow: none;
	box-sizing: border-box;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.turo-newsletter__fields input[type="email"]::placeholder {
	color: #858585;
	opacity: 1;
}

.turo-newsletter__fields input[type="email"]:focus,
.turo-newsletter__fields input[type="email"]:focus-visible {
	border-color: #111;
	background: #fff;
	outline: 0;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.045);
}

.turo-newsletter__fields button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 138px;
	height: 52px;
	margin: 0;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.035em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.turo-newsletter__fields button:hover,
.turo-newsletter__fields button:focus-visible {
	background: #292929;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(17, 17, 17, 0.16);
	outline: 0;
}

.turo-newsletter small {
	display: block;
	margin: 10px 2px 0;
	color: #777;
	font-family: "Poppins", sans-serif;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.5;
}

.turo-newsletter__honeypot {
	position: absolute !important;
	left: -5000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.turo-newsletter {
		padding: 56px 24px;
	}

	.turo-newsletter__inner {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 32px;
	}

	.turo-newsletter__content {
		max-width: 720px;
	}

	.turo-newsletter__form {
		width: 100%;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.turo-newsletter {
		padding: 42px var(--turo-content-gutter, 20px);
	}

	.turo-newsletter__inner {
		gap: 22px;
		padding: 24px 20px;
		border-radius: 24px;
	}

	.turo-newsletter__eyebrow {
		margin-bottom: 8px;
		font-size: 9px;
		letter-spacing: 0.16em;
	}

	.turo-newsletter h2 {
		margin-bottom: 12px;
		font-size: 34px;
		line-height: 1.03;
	}

	.turo-newsletter p {
		font-size: 14px;
		line-height: 1.65;
	}

	.turo-newsletter__form {
		padding: 16px;
		border-radius: 20px;
	}

	.turo-newsletter__fields {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.turo-newsletter__fields input[type="email"],
	.turo-newsletter__fields button {
		width: 100%;
		height: 50px;
	}

	.turo-newsletter__fields button {
		min-width: 0;
	}

	.turo-newsletter small {
		margin-top: 9px;
		font-size: 10px;
		text-align: center;
	}
}
