/* =============================================
   PAGE: NUESTRO EQUIPO
   ============================================= */

/* ── Hero ─────────────────────────────────────── */
.eq-hero {
	background: linear-gradient(130deg, #0A2342 0%, #1a4a7a 60%, #1F77B4 100%);
	padding: 5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.eq-hero::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(255, 191, 0, 0.05);
	top: -180px;
	right: -80px;
	pointer-events: none;
}

.eq-hero__title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin: 0 0 1rem;
	position: relative;
}

.eq-hero__sub {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.65;
	position: relative;
}

/* ── Team Section ─────────────────────────────── */
.eq-team {
	padding: 5rem 0 4rem;
	background: #fff;
}

.eq-team__title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #0A2342;
	text-align: center;
	margin: 0 0 3.5rem;
}

.eq-team__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 660px;
	margin: 0 auto;
}

/* ── Team Card ─────────────────────────────────── */
.eq-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #E5E7EB;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.eq-card:hover {
	box-shadow: 0 8px 32px rgba(10, 35, 66, 0.14);
	transform: translateY(-4px);
}

.eq-card__photo-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #0A2342;
}

.eq-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.4s ease;
}

.eq-card:hover .eq-card__photo {
	transform: scale(1.03);
}

.eq-card__body {
	background: #F4F6F9;
	padding: 1.125rem 1.5rem 1.375rem;
}

.eq-card__name {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #1F77B4;
	margin: 0 0 0.25rem;
	line-height: 1.15;
}

.eq-card__role {
	font-size: 0.875rem;
	color: #4B5563;
	margin: 0;
	line-height: 1.4;
}

/* ── CTA Section ──────────────────────────────── */
.eq-cta {
	background: #F4F6F9;
	padding: 5rem 0;
	text-align: center;
}

.eq-cta__title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #0A2342;
	margin: 0 0 1rem;
}

.eq-cta__body {
	max-width: 520px;
	margin: 0 auto 2rem;
	color: #4B5563;
	font-size: 1rem;
	line-height: 1.75;
}

.eq-cta__btn {
	display: inline-block;
	padding: 0.9rem 2.25rem;
	background: #FFBF00;
	color: #0A2342;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 0.9375rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.eq-cta__btn:hover {
	background: #e6ac00;
	transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
	.eq-team__grid {
		grid-template-columns: 1fr;
		max-width: 360px;
	}

	.eq-hero {
		padding: 4rem 0;
	}
}

@media (max-width: 480px) {
	.eq-card__body {
		padding: 1.5rem;
	}
}
