/* ===== ESTILOS DEL COMPONENTE ===== */
.quehacemos-hero {
	box-sizing: border-box;
	font-family: var(--pma-font-principal);
	background: var(--pma-blanco);
	width: var(--pma-full-width);
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	display: flex;
}

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

/* Contenedor del contenido */
.quehacemos-hero-content {
	max-width: 50vw;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

/* Contenedor del título */
.quehacemos-title-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

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

/* Círculo decorativo amarillo */
.quehacemos-title::before {
	content: "";
	width: 20px;
	height: 20px;
	background: var(--pma-amarillo-acento);
	border-radius: 50%;
	flex-shrink: 0;
	display: inline-block;
	margin-right: 16px;
}

/* Párrafo descriptivo */
.quehacemos-description {
	font-size: 18px;
	color: var(--pma-negro);
	line-height: 1.6;
	text-align: center;
	max-width: 100%;
	margin: 0;
	font-family: var(--pma-font-secundaria);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet */
@media (max-width: 1024px) {
	.quehacemos-hero {
		padding: 60px 20px;
	}

	.quehacemos-title-container {
		gap: 12px;
	}

	.quehacemos-title::before {
		width: 18px;
		height: 18px;
		margin-right: 12px;
	}

	.quehacemos-title {
		font-size: 48px;
	}

	.quehacemos-description {
		font-size: 17px;
	}
}

/* Móvil */
@media (max-width: 768px) {
	.quehacemos-hero {
		padding: 48px 16px;
		min-height: 300px;
	}

	.quehacemos-hero-content {
		gap: 20px;
	}

	.quehacemos-title-container {
		gap: 10px;
	}

	.quehacemos-title::before {
		width: 16px;
		height: 16px;
		margin-right: 10px;
	}

	.quehacemos-title {
		font-size: 36px;
	}

	.quehacemos-description {
		font-size: 16px;
	}
}

/* Móvil pequeño */
@media (max-width: 480px) {
	.quehacemos-hero {
		padding: 40px 16px;
		min-height: 250px;
	}

	.quehacemos-hero-content {
		gap: 16px;
	}

	.quehacemos-title-container {
		gap: 8px;
	}

	.quehacemos-title::before {
		width: 14px;
		height: 14px;
		margin-right: 8px;
	}

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

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