/* =========================================
   WHY PERTECNICA
   Enterprise Homepage System
========================================= */

.pt-why-pertecnica {
	position: relative;
	padding: var(--pt-section-spacing, 100px) 0;
	background: #f8fafc;
	overflow: hidden;
}

/* =========================================
   HEADER
========================================= */

.pt-why-pertecnica__header {
	max-width: 760px;
	margin: 0 auto 64px;
	text-align: center;
}

/* =========================================
   GRID
========================================= */

.pt-why-pertecnica__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

/* =========================================
   CARD
========================================= */

.pt-why-card {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	min-height: 100%;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.pt-why-card:hover {
	transform: translateY(-6px);
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.pt-why-card__content {
	padding: 40px 36px;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.pt-why-card__title {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 18px;
}

.pt-why-card__description {
	font-size: 0.98rem;
	line-height: 1.8;
	color: #475569;
	margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {

	.pt-why-pertecnica__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pt-why-pertecnica__header {
		margin-bottom: 48px;
	}

}

@media (max-width: 768px) {

	.pt-why-pertecnica {
		padding: 72px 0;
	}

	.pt-why-card__content {
		padding: 32px 28px;
	}

}