/* ===== Enjoy Offer Text ===== */
/* Layout 50/50: Contenido textual + Grid irregular de imágenes */

.enjoy-offer-text {
	padding: 92px 0px;
}

/* ===== MAIN WRAPPER: 50% / 50% Layout ===== */
.enjoy-offer-text__wrapper {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 60px;
}

/* ===== LEFT COLUMN: Content (42%) ===== */
.enjoy-offer-text__content {
	flex: 1 1 42%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

/* Logo - Negro con filtro */
.enjoy-offer-text__logo {
	display: block;
	max-width: 66px;
	height: auto;
	margin-bottom: 32px;
	filter: brightness(0);
	align-self: center;
	margin: 0 auto;
}

/* Title */
.enjoy-offer-text__title {
	font-size: 48px;
	line-height: 0.935em;
	font-family: 'Plaax 6 Ney Heavy', sans-serif;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 24px 0;
	text-align: center;
}

/* Description */
.enjoy-offer-text__description {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin: 0 0 32px 0;
	max-width: 500px;
	text-align: center;
}

.enjoy-offer-text__description p {
	margin: 0 0 16px 0;
}

.enjoy-offer-text__description p:last-child {
	margin-bottom: 0;
}

/* Button */
.enjoy-offer-text__button {
	margin-top: 8px;
	width: 100%;
	text-align: center;
}

/* Legal text - Texto pequeño tipo contrato */
.enjoy-offer-text__legal-text {
	font-size: 12px;
	line-height: 1.5;
	color: #666666;
	margin-top: 15px;
	max-width: 500px;
	text-align: center;
}

.enjoy-offer-text__legal-text p {
	margin: 0 0 8px 0;
}

.enjoy-offer-text__legal-text p:last-child {
	margin-bottom: 0;
}

/* ===== RIGHT COLUMN: Image Grid (58%) ===== */
.enjoy-offer-text__images {
	flex: 1 1 58%;
	display: grid;
	grid-template-columns: 30% 35% 35%;
	grid-template-rows: 50% 50%;
	height: 600px;
}

/* Grid positioning: Imagen 1 - Vertical izquierda (ocupa ambas filas) */
.enjoy-offer-text__img-1 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	overflow: hidden;
}

/* Grid positioning: Imagen 2 - Horizontal superior centro */
.enjoy-offer-text__img-2 {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	overflow: hidden;
}

/* Grid positioning: Imagen 3 - Horizontal superior derecha */
.enjoy-offer-text__img-3 {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	overflow: hidden;
}

/* Grid positioning: Imagen 4 - Horizontal inferior grande (ocupa columnas 2 y 3) */
.enjoy-offer-text__img-4 {
	grid-column: 2 / 4;
	grid-row: 2 / 3;
	overflow: hidden;
}

/* Image styles */
.enjoy-offer-text__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 5px;
}

/* ===== RESPONSIVE: Tablet (768px - 992px) ===== */
@media (max-width: 992px) {
	.enjoy-offer-text {
		padding-block: 60px;
	}

	.enjoy-offer-text__wrapper {
		gap: 40px;
	}

	.enjoy-offer-text__content {
		padding-right: 20px;
	}

	.enjoy-offer-text__logo {
		max-width: 120px;
		margin-bottom: 24px;
	}

	.enjoy-offer-text__title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.enjoy-offer-text__description {
		font-size: 15px;
		margin-bottom: 28px;
	}

	/* Texto legal en tablet */
	.enjoy-offer-text__legal-text {
		font-size: 11px;
		margin-top: 12px;
	}

	/* Grid ajustado */
	.enjoy-offer-text__images {
		height: 500px;
		gap: 8px;
	}
}

/* ===== RESPONSIVE: Mobile (<768px) ===== */
@media (max-width: 768px) {
	.enjoy-offer-text {
		padding-block: 50px;
	}

	/* Cambiar a columna */
	.enjoy-offer-text__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	/* Contenido: 100% ancho */
	.enjoy-offer-text__content {
		flex: 1 1 100%;
		padding-right: 0;
		align-items: center;
		text-align: center;
	}

	.enjoy-offer-text__logo {
		max-width: 100px;
		margin-bottom: 20px;
	}

	.enjoy-offer-text__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.enjoy-offer-text__description {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 24px;
		max-width: 100%;
	}

	/* Texto legal en mobile */
	.enjoy-offer-text__legal-text {
		font-size: 10px;
		margin-top: 10px;
		max-width: 100%;
	}

	/* Grid: 100% ancho, ajustado a 2x2 simplificado */
	.enjoy-offer-text__images {
		flex: 1 1 100%;
		width: 100%;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 200px 200px;
		gap: 8px;
		height: auto;
	}

	/* Mobile grid: 2x2 layout */
	.enjoy-offer-text__img-1 {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.enjoy-offer-text__img-2 {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.enjoy-offer-text__img-3 {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}

	.enjoy-offer-text__img-4 {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
}

/* ===== RESPONSIVE: Small Mobile (<576px) ===== */
@media (max-width: 576px) {
	.enjoy-offer-text {
		padding-block: 40px;
	}

	.enjoy-offer-text__wrapper {
		gap: 30px;
	}

	.enjoy-offer-text__logo {
		max-width: 90px;
		margin-bottom: 16px;
	}

	.enjoy-offer-text__title {
		font-size: 28px;
		line-height: 1em;
		margin-bottom: 12px;
	}

	.enjoy-offer-text__description {
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: 20px;
	}

	/* Grid más pequeño en mobile muy pequeño */
	.enjoy-offer-text__images {
		grid-template-rows: 180px 180px;
		gap: 6px;
	}
}
