/**
 * Sobre Nós Page Styles
 * Light Theme - Nova Paleta 2025
 *
 * @version 2.0.0
 */

/* ============================================
   HERO SOBRE
   ============================================ */

.sobre-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-20) var(--space-4);
	overflow: hidden;
	background: var(--light-primary);
}

.sobre-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
}

.sobre-hero-title {
	font-family: var(--font-display);
	font-size: var(--text-5xl);
	font-weight: var(--font-bold);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-4);
	color: var(--tingle-brown);
}

.sobre-hero-subtitle {
	font-size: var(--text-xl);
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.sobre-intro {
	background: var(--light-secondary);
}

.sobre-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-16);
	align-items: center;
}

.sobre-intro-title {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
	margin-bottom: var(--space-6);
	color: var(--tingle-brown);
}

.sobre-intro-text {
	font-size: var(--text-lg);
	color: var(--text-secondary);
	margin-bottom: var(--space-4);
	line-height: var(--leading-relaxed);
}

.sobre-intro-text strong {
	color: var(--tingle-brown);
}

.sobre-intro-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}

.sobre-stat {
	background: white;
	border: 1px solid rgba(50, 30, 12, 0.08);
	border-radius: var(--radius-xl);
	padding: var(--space-6);
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.sobre-stat-number {
	font-family: var(--font-display);
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
	background: var(--gradient-coral-amber);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.sobre-stat-suffix {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: var(--font-bold);
	color: var(--tingle-coral);
}

.sobre-stat-label {
	font-size: var(--text-sm);
	color: var(--text-muted);
	margin-top: var(--space-2);
	display: block;
}

/* ============================================
   TIMELINE
   ============================================ */

.sobre-timeline {
	background: var(--light-primary);
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: var(--space-8) 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--tingle-coral) 10%,
		var(--tingle-turquoise) 50%,
		var(--tingle-coral) 90%,
		transparent
	);
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	margin-bottom: var(--space-12);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: var(--space-8);
	align-items: start;
}

.timeline-item:nth-child(odd) .timeline-content {
	grid-column: 1;
	text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
	grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
	grid-column: 3;
	text-align: left;
}

.timeline-item:nth-child(even) .timeline-marker {
	grid-column: 2;
}

.timeline-marker {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-year {
	background: var(--gradient-coral-amber);
	color: white;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: var(--font-bold);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	white-space: nowrap;
}

.timeline-item-current .timeline-year {
	animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-content {
	padding: var(--space-6);
}

.timeline-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: var(--font-semibold);
	color: var(--tingle-brown);
	margin-bottom: var(--space-3);
}

.timeline-text {
	font-size: var(--text-base);
	color: var(--text-secondary);
	margin-bottom: var(--space-3);
	line-height: var(--leading-relaxed);
}

.timeline-text strong {
	color: var(--tingle-coral);
}

.timeline-list {
	list-style: none;
	padding: 0;
	margin: var(--space-4) 0;
}

.timeline-list li {
	position: relative;
	padding-left: var(--space-6);
	margin-bottom: var(--space-2);
	font-size: var(--text-sm);
	color: var(--text-secondary);
}

.timeline-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--tingle-coral);
	border-radius: 50%;
}

.timeline-list li strong {
	color: var(--tingle-brown);
}

.timeline-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: var(--space-4);
}

.timeline-item:nth-child(odd) .timeline-tags {
	justify-content: flex-end;
}

.timeline-tag {
	background: rgba(255, 112, 76, 0.12);
	color: var(--tingle-coral);
	font-size: var(--text-xs);
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-full);
	border: 1px solid rgba(255, 112, 76, 0.2);
}

.timeline-location {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	margin-top: var(--space-4);
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.timeline-item:nth-child(odd) .timeline-location {
	justify-content: flex-end;
}

.timeline-location svg {
	color: var(--tingle-magenta);
}

.timeline-highlight {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	background: rgba(2, 176, 181, 0.1);
	border: 1px solid rgba(2, 176, 181, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-3) var(--space-4);
	margin: var(--space-4) 0;
	font-size: var(--text-sm);
	color: var(--tingle-turquoise);
}

.timeline-item:nth-child(odd) .timeline-highlight {
	justify-content: flex-end;
}

.timeline-highlight svg {
	flex-shrink: 0;
}

.timeline-highlight-featured {
	background: rgba(253, 176, 19, 0.1);
	border-color: rgba(253, 176, 19, 0.2);
	color: var(--tingle-amber);
}

.timeline-highlight-featured svg {
	color: var(--tingle-amber);
}

/* ============================================
   EQUIPE
   ============================================ */

.sobre-equipe {
	background: var(--light-primary);
}

.equipe-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-8);
	max-width: 1000px;
	margin: 0 auto;
}

.equipe-card {
	padding: var(--space-8);
	text-align: center;
	background: white;
	border: 1px solid rgba(50, 30, 12, 0.08);
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-sm);
	transition: transform var(--duration-normal) var(--ease-smooth);
}

.equipe-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.equipe-avatar {
	width: 100px;
	height: 100px;
	margin: 0 auto var(--space-4);
	background: var(--gradient-coral-amber);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.equipe-avatar::before {
	content: '';
	position: absolute;
	inset: 3px;
	background: white;
	border-radius: 50%;
}

.equipe-avatar-initials {
	position: relative;
	z-index: 1;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: var(--font-bold);
	background: var(--gradient-coral-amber);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.equipe-avatar-img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.equipe-nome {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: var(--font-semibold);
	color: var(--tingle-brown);
	margin-bottom: var(--space-1);
}

.equipe-cargo {
	font-size: var(--text-sm);
	color: var(--tingle-coral);
	font-weight: var(--font-medium);
	display: block;
	margin-bottom: var(--space-3);
}

.equipe-bio {
	font-size: var(--text-sm);
	color: var(--text-secondary);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-4);
}

.equipe-social {
	display: flex;
	justify-content: center;
	gap: var(--space-3);
}

.equipe-social a {
	color: var(--text-muted);
	transition: color var(--duration-fast);
}

.equipe-social a:hover {
	color: var(--tingle-coral);
}

/* ============================================
   VALORES
   ============================================ */

.sobre-valores {
	background: var(--light-secondary);
}

.valores-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
}

.valor-card {
	padding: var(--space-8);
	text-align: center;
	background: white;
	border: 1px solid rgba(50, 30, 12, 0.08);
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-sm);
	transition: transform var(--duration-normal) var(--ease-smooth);
}

.valor-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.valor-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto var(--space-4);
	background: rgba(255, 112, 76, 0.1);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
}

.valor-icon svg {
	width: 32px;
	height: 32px;
	color: var(--tingle-coral);
}

.valor-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--font-semibold);
	color: var(--tingle-brown);
	margin-bottom: var(--space-3);
}

.valor-text {
	font-size: var(--text-sm);
	color: var(--text-secondary);
	line-height: var(--leading-relaxed);
}

/* ============================================
   PARCEIROS
   ============================================ */

.sobre-parceiros {
	background: var(--light-primary);
}

.parceiros-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-4);
}

.parceiro-card {
	padding: var(--space-6);
	text-align: center;
	background: white;
	border: 1px solid rgba(50, 30, 12, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
	transition: all var(--duration-normal) var(--ease-smooth);
}

.parceiro-card:hover {
	transform: scale(1.05);
	border-color: var(--tingle-coral);
	box-shadow: var(--shadow-coral);
}

.parceiro-name {
	display: block;
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--font-semibold);
	color: var(--tingle-brown);
	margin-bottom: var(--space-2);
}

.parceiro-tipo {
	font-size: var(--text-xs);
	color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
	.sobre-intro-grid {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}

	.valores-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.parceiros-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.timeline::before {
		left: 30px;
	}

	.timeline-item {
		grid-template-columns: auto 1fr;
		gap: var(--space-4);
	}

	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		grid-column: 2;
		text-align: left;
	}

	.timeline-item:nth-child(odd) .timeline-marker,
	.timeline-item:nth-child(even) .timeline-marker {
		grid-column: 1;
	}

	.timeline-item:nth-child(odd) .timeline-tags,
	.timeline-item:nth-child(odd) .timeline-location,
	.timeline-item:nth-child(odd) .timeline-highlight {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.sobre-hero-title {
		font-size: var(--text-3xl);
	}

	.sobre-intro-title {
		font-size: var(--text-2xl);
	}

	.sobre-intro-stats {
		grid-template-columns: 1fr;
	}

	.equipe-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

	.valores-grid {
		grid-template-columns: 1fr;
	}

	.parceiros-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.timeline-year {
		font-size: var(--text-xs);
		padding: var(--space-1) var(--space-3);
	}
}

@media (max-width: 480px) {
	.sobre-hero {
		min-height: 50vh;
		padding: var(--space-16) var(--space-4);
	}

	.parceiros-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 112, 76, 0.4);
	}
	50% {
		box-shadow: 0 0 40px rgba(2, 176, 181, 0.6);
	}
}
