/* ===== ESTILOS DEL COMPONENTE ===== */
.home-quick-contact {
	box-sizing: border-box;
	font-family: var(--pma-font-principal);
	background: #e3f2fd;
	padding: 32px 24px;
	margin: 0 auto;
}

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

/* Contenedor principal */
.home-contact-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: var(--pma-max-width);
	margin: 0 auto;
}

/* Título con círculo */
.home-contact-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0;
}

.home-contact-title::before {
	content: "";
	width: 20px;
	height: 20px;
	background: var(--pma-amarillo-acento);
	border-radius: 50%;
	flex-shrink: 0;
}

.home-contact-title-text {
	font-size: 48px;
	font-weight: 700;
	color: var(--pma-azul-principal);
	line-height: 1.2;
}

/* Descripción */
.home-contact-description {
	font-size: 18px;
	font-weight: 400;
	color: var(--pma-negro);
	line-height: 1.6;
	text-align: center;
	max-width: 900px;
}

/* Botón */
.home-contact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--pma-azul-principal);
	color: var(--pma-blanco) !important;
	padding: 12px 28px;
	border: none;
	border-radius: 50px;
	font-family: var(--pma-font-principal);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.home-contact-button:hover {
	background: #003366;
	box-shadow: 0 4px 12px rgba(0, 69, 131, 0.3);
	transform: translateY(-2px);
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.home-quick-contact {
		padding: 24px 20px;
	}

	.home-contact-container {
		gap: 20px;
	}

	.home-contact-title-text {
		font-size: 28px;
	}

	.home-contact-description {
		font-size: 16px;
	}

	.home-contact-button {
		padding: 10px 24px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.home-quick-contact {
		padding: 20px 16px;
	}

	.home-contact-container {
		gap: 16px;
	}

	.home-contact-title {
		gap: 12px;
	}

	.home-contact-title::before {
		width: 16px;
		height: 16px;
	}

	.home-contact-title-text {
		font-size: 24px;
	}

	.home-contact-description {
		font-size: 15px;
	}

	.home-contact-button {
		padding: 10px 20px;
		font-size: 14px;
		width: 100%;
	}
}
