/* =============================================
   PAGE: PERFIL DE COFUNDADOR
   ============================================= */

/* ── Profile Layout ────────────────────────────── */
.pf-hero {
	padding: 5rem 0;
	background: #fff;
}

.pf-hero__inner {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 4.5rem;
	align-items: start;
}

/* ── Photo ─────────────────────────────────────── */
.pf-hero__photo-wrap {
	position: sticky;
	top: 100px;
	border-radius: 20px;
	overflow: hidden;
	background: #0A2342;
	aspect-ratio: 3 / 4;
	box-shadow: 0 16px 48px rgba(10, 35, 66, 0.18);
}

.pf-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* ── Info ──────────────────────────────────────── */
.pf-hero__label {
	display: inline-block;
	padding: 0.375rem 1rem;
	background: rgba(31, 119, 180, 0.08);
	border: 1px solid rgba(31, 119, 180, 0.28);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1F77B4;
	margin-bottom: 1.25rem;
}

.pf-hero__name {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #0A2342;
	line-height: 1.05;
	margin: 0 0 0.375rem;
}

.pf-hero__role {
	font-size: 1rem;
	font-weight: 600;
	color: #1F77B4;
	letter-spacing: 0.02em;
	margin: 0 0 2rem;
}

.pf-divider {
	width: 48px;
	height: 3px;
	background: #FFBF00;
	border: none;
	margin: 0 0 2rem;
	border-radius: 2px;
}

/* ── Bio ───────────────────────────────────────── */
.pf-bio__p {
	font-size: 1.0625rem;
	color: #4B5563;
	line-height: 1.82;
	margin: 0 0 1.375rem;
}

.pf-bio__p:last-child {
	margin-bottom: 0;
}

/* ── Back link ─────────────────────────────────── */
.pf-back-wrap {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #E5E7EB;
}

.pf-back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #4B5563;
	text-decoration: none;
	transition: color 0.2s ease;
}

.pf-back:hover {
	color: #0A2342;
}

.pf-back svg {
	transition: transform 0.2s ease;
}

.pf-back:hover svg {
	transform: translateX(-3px);
}

/* ── Expertise chips ───────────────────────────── */
.pf-expertise {
	background: #F4F6F9;
	padding: 4rem 0;
}

.pf-expertise__inner {
	max-width: 860px;
}

.pf-expertise__title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0A2342;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}

.pf-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.pf-chip {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 100px;
	font-size: 0.875rem;
	color: #0A2342;
	font-weight: 500;
}

/* ── CTA ───────────────────────────────────────── */
.pf-cta {
	padding: 5rem 0;
	text-align: center;
}

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

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

.pf-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;
}

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

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
	.pf-hero__inner {
		grid-template-columns: 320px 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.pf-hero__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pf-hero__photo-wrap {
		position: static;
		max-width: 300px;
		margin: 0 auto;
		aspect-ratio: 1 / 1;
	}

	.pf-hero {
		padding: 3.5rem 0;
	}

	.pf-hero__name {
		text-align: center;
	}

	.pf-hero__label,
	.pf-hero__role {
		display: block;
		text-align: center;
	}

	.pf-divider {
		margin-left: auto;
		margin-right: auto;
	}
}
