/* --- SECCIÓN HERO FULL-WIDTH NUTRIFOOD --- */
/* Contenedor Raíz - Fuerza el ancho total de la pantalla */
.nutri-full-hero {
/* Resetea estilos heredados del tema */
	display: block;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
/* Técnica breakouts */
	margin-right: calc(-50vw + 50%);
	background-color: #e8e9dd;
/* Tu color crema claro */
	font-family: 'Poppins', sans-serif !important;
	padding: 80px 0;
/* Espaciado arriba/abajo */
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
}

/* Contenedor de Contenido - Centra y limita el ancho del texto/imagen */
.nutri-hero-content {
	max-width: 1100px;
/* Ancho máximo prolijo para PC */
	margin: 0 auto;
	display: flex;
	flex-direction: row;
/* En PC uno al lado del otro */
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 0 40px;
	box-sizing: border-box;
}

/* Columna Texto - Misma estructura que la referencia */
.nutri-hero-text {
	flex: 1;
	max-width: 500px;
}

.nutri-hero-text h1 {
	font-family: 'Poppins', sans-serif !important;
	font-size: clamp(36px, 4vw, 52px) !important;
/* Texto fluido */
	font-weight: 700 !important;
	color: #274c45 !important;
/* Tu color verde oscuro */
	line-height: 1.1 !important;
	margin: 0 0 20px !important;
}

.nutri-hero-text h1 span {
	color: #029a5d !important;
/* Tu color verde claro */
}

.nutri-hero-text p {
	font-family: 'Poppins', sans-serif !important;
	font-size: 19px !important;
	color: #274c45 !important;
	line-height: 1.6 !important;
	opacity: .9;
	margin: 0 0 35px !important;
}

/* Botón - Mismo estilo que la referencia */
.nutri-btn-call {
	display: inline-block;
	background-color: #029a5d !important;
/* Verde claro */
	color: #e8e9dd !important;
/* Texto crema claro (reemplaza blanco) */
	padding: 18px 45px !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	transition: transform .3s ease !important;
}

.nutri-btn-call:hover {
	transform: translateY(-3px);
}

/* Columna Imagen - Con el fondo orgánico "blob" */
.nutri-hero-visual {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* La mancha verde de fondo */
.nutri-hero-blob {
	position: absolute;
	width: 450px;
	height: 450px;
	background-color: #029a5d;
/* Forma orgánica asimétrica */
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	z-index: 1;
	right: -50px;
}

.nutri-main-image {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 420px;
	height: auto;
	filter: drop-shadow(0 25px 40px rgba(39, 76, 69, 0.25));
/* Sombra suave con tu verde */
}

/* --- AJUSTE RESPONSIVO PARA MÓVIL --- */
@media (max-width: 768px) {
	.nutri-full-hero {
		padding: 60px 0;
	}
	
	.nutri-hero-content {
		flex-direction: column;
	/* Apila los elementos */
		text-align: center;
		padding: 0 20px;
	}
	
	/* Hace que el texto aparezca PRIMERO en móvil */
	.nutri-hero-text {
		order: -1;
		max-width: 100%;
		margin-bottom: 50px;
	}
	
	.nutri-hero-text h1 {
		font-size: 38px !important;
	}
	
	.nutri-hero-text p {
		font-size: 17px !important;
	}
	
	/* Dimensiones controladas para la imagen en móvil */
	.nutri-hero-visual {
		width: 100%;
		max-width: 320px;
	/* Ya no es gigante */
		margin: 0 auto;
	}
	
	.nutri-hero-blob {
		width: 300px;
		height: 300px;
		right: 0;
		left: 0;
		margin: auto;
	}
}