/* ===== ESTILOS DEL HOMEHERO ===== */
.pma-homeHero-container {
	position: relative;
	max-width: var(--pma-max-width);
	height: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	font-family: var(--pma-font-principal);
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	border: none;
}

/* Reset y box-sizing para todos los elementos dentro del homeHero */
.pma-homeHero-container *,
.pma-homeHero-container *::before,
.pma-homeHero-container *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Imagen de fondo completa */
.pma-homeHero-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--pma-homeHero-bg-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	border: none;
}

/* Degradado blanco para legibilidad del texto - lado izquierdo */
.pma-homeHero-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0.95) 40%,
		rgba(255, 255, 255, 0.7) 70%,
		transparent 100%
	);
	z-index: 2;
	border: none;
}

/* Contenido del homeHero */
.pma-homeHero-content {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	border: none;
}

/* Sección de texto */
.pma-homeHero-text {
	flex: 0 0 46%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.2rem;
	padding: 2rem 0;
}

/* Logo */
.pma-homeHero-logo {
	max-width: 280px;
	height: auto;
	margin-bottom: 24px;
	display: block;
}

/* Título principal */
.pma-homeHero-title {
	font-size: 40px;
	font-weight: bold;
	color: var(--pma-azul-principal);
	line-height: 1.2;
	margin-bottom: 16px;
	font-family: var(--pma-font-principal);
}

/* Línea de separación */
.pma-homeHero-separator {
	width: 80%;
	height: 3px;
	background-color: var(--pma-amarillo-acento);
	margin-bottom: 24px;
	border: none;
}

/* Texto del cuerpo */
.pma-homeHero-body {
	font-size: 18px;
	color: var(--pma-negro);
	line-height: 1.6;
	font-weight: normal;
	max-width: 90%;
	font-family: var(--pma-font-secundaria);
}

/* Sección de imagen */
.pma-homeHero-image {
	flex: 0 0 54%;
	height: 100%;
	position: relative;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet - mantiene tamaños de desktop */
@media (max-width: 1024px) {
	.pma-homeHero-text {
		flex: 0 0 50%;
		padding: 1.2rem 1.5rem;
	}

	.pma-homeHero-image {
		flex: 0 0 50%;
	}

	.pma-homeHero-logo {
		max-width: 160px;
	}
}

/* Móvil */
@media (max-width: 768px) {
	.pma-homeHero-container {
		height: 60vh;
		flex-direction: column;
	}

	.pma-homeHero-container::after {
		width: 100%;
		height: 70%;
		top: auto;
		bottom: 0;
		background: linear-gradient(
			to top,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.95) 40%,
			rgba(255, 255, 255, 0.7) 80%,
			transparent 100%
		);
	}

	.pma-homeHero-content {
		flex-direction: column;
	}

	.pma-homeHero-text {
		flex: 0 0 60%;
		padding: 1.5rem;
		width: 100%;
		order: 2;
	}

	.pma-homeHero-logo {
		max-width: 200px;
		margin-bottom: 0;
	}

	.pma-homeHero-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.pma-homeHero-separator {
		width: 60%;
		margin-bottom: 16px;
	}

	.pma-homeHero-body {
		font-size: 15px;
		max-width: 100%;
	}

	.pma-homeHero-image {
		flex: 0 0 40%;
		width: 100%;
		order: 1;
	}
}

/* Móvil pequeño */
@media (max-width: 480px) {
	.pma-homeHero-container {
		min-height: 600px;
	}

	.pma-homeHero-text {
		padding: 1.2rem;
	}

	.pma-homeHero-logo {
		max-width: 120px;
		margin-bottom: 16px;
	}

	.pma-homeHero-title {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.pma-homeHero-separator {
		width: 50%;
		height: 2px;
		margin-bottom: 12px;
	}

	.pma-homeHero-body {
		font-size: 14px;
	}
}
