/* Hero Section com Background */
.sobrenos-hero {
	padding: 80px 0 80px;
	min-height: 45vh;
	background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: center;
}

.sobrenos-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(35, 23, 115, 0.85) 0%, rgba(26, 18, 85, 0.85) 100%);
	z-index: 1;
}

.sobrenos-hero-content {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.8s ease-out;
}

.sobrenos-hero h1 {
	font-size: 4rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	letter-spacing: -1px;
	line-height: 1.2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.sobrenos-hero p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Container Principal */
.sobrenos-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

/* Seção Sobre Nós */
.sobrenos-content {
	padding: 50px 0;
	background: #ffffff;
	position: relative;
}

.sobrenos-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(35, 23, 115, 0.08), transparent);
}

.sobrenos-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-top: 64px;
}

.sobrenos-text {
	animation: slideInLeft 0.8s ease-out;
}

.sobrenos-text h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #231773;
	margin-bottom: 24px;
	letter-spacing: -0.6px;
	line-height: 1.2;
}

.sobrenos-text p {
	font-size: 1.1rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 24px;
	letter-spacing: 0.1px;
}

.sobrenos-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	animation: slideInRight 0.8s ease-out;
}

.sobrenos-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: #f1f5f9;
}

.sobrenos-image:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sobrenos-image-large {
	grid-column: 1 / -1;
	height: 320px;
}

/* Seção Valores com Background */
.sobrenos-valores {
	padding: 50px 0;
	background: linear-gradient(135deg, rgba(35, 23, 115, 0.95) 0%, rgba(26, 18, 85, 0.95) 100%),
		url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
}

.sobrenos-valores::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(35, 23, 115, 0.92) 0%, rgba(26, 18, 85, 0.92) 100%);
	z-index: 1;
}

.sobrenos-valores .sobrenos-container {
	position: relative;
	z-index: 2;
}

.sobrenos-header {
	text-align: center;
	margin-bottom: 80px;
	animation: fadeInUp 0.8s ease-out;
}

.sobrenos-section-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	letter-spacing: -0.8px;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

.sobrenos-section-title::after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #ffc107, transparent);
	border-radius: 2px;
}

.sobrenos-section-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.95);
	margin-top: 32px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.valores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.valor-item {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 48px 40px;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	position: relative;
	border: 1px solid rgba(255, 193, 7, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	text-align: center;
	animation: fadeInUp 0.6s ease-out backwards;
}

.valor-item:nth-child(1) {
	animation-delay: 0.2s;
}

.valor-item:nth-child(2) {
	animation-delay: 0.3s;
}

.valor-item:nth-child(3) {
	animation-delay: 0.4s;
}

.valor-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, #ffc107, #ffd54f);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.valor-item:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 193, 7, 0.4);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.valor-item:hover::before {
	transform: scaleY(1);
}

.valor-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
	transition: transform 0.4s ease;
}

.valor-item:hover .valor-icon {
	transform: scale(1.1) rotate(5deg);
}

.valor-icon svg {
	width: 40px;
	height: 40px;
	fill: #231773;
}

.valor-item h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

.valor-item p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.75;
	position: relative;
	z-index: 1;
}

/* Seção Missão e Visão */
.sobrenos-missao {
	padding: 50px 0;
	background: #f8f9fa;
}

.missao-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 64px;
	margin-top: 64px;
}

.missao-card {
	background: #ffffff;
	padding: 48px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(35, 23, 115, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.6s ease-out backwards;
	position: relative;
}

.missao-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffc107, #ffd54f);
	border-radius: 20px 20px 0 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.missao-card:hover::before {
	opacity: 1;
}

.missao-card:nth-child(1) {
	animation-delay: 0.1s;
}

.missao-card:nth-child(2) {
	animation-delay: 0.2s;
}

.missao-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(35, 23, 115, 0.15);
	border-color: rgba(255, 193, 7, 0.2);
}

.missao-card h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #231773;
	margin-bottom: 20px;
	letter-spacing: -0.4px;
	position: relative;
	padding-bottom: 16px;
}

.missao-card h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #ffc107, #ffd54f);
	border-radius: 2px;
}

.missao-card p {
	font-size: 1.1rem;
	color: #475569;
	line-height: 1.8;
}

/* CTA Section */
.cta-section {
	padding: 50px 0;
	background: linear-gradient(135deg, rgba(35, 23, 115, 0.03) 0%, rgba(26, 18, 85, 0.03) 100%),
		url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
	background-attachment: fixed;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
	z-index: 1;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-section h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #231773;
	margin-bottom: 24px;
	letter-spacing: -0.8px;
	line-height: 1.2;
}

.cta-section p {
	font-size: 1.2rem;
	color: #475569;
	margin-bottom: 48px;
	line-height: 1.7;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
	color: #231773;
	padding: 20px 48px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
	position: relative;
	overflow: hidden;
}

.cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.5s ease;
}

.cta-btn:hover {
	background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.cta-btn:hover::before {
	left: 100%;
}

.cta-btn::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23231773' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.375a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover::after {
	transform: translateX(6px);
}

.cta-btn:focus-visible {
	outline: 3px solid #231773;
	outline-offset: 2px;
}

/* Responsividade */
@media (max-width: 992px) {
	.sobrenos-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sobrenos-images {
		grid-template-columns: 1fr;
	}

	.sobrenos-image-large {
		grid-column: 1;
	}

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

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

@media (max-width: 768px) {
	.sobrenos-hero {
		padding: 60px 0 60px;
		min-height: 40vh;
	}

	.sobrenos-hero h1 {
		font-size: 2.5rem;
	}

	.sobrenos-hero p {
		font-size: 1.1rem;
	}

	.sobrenos-content,
	.sobrenos-valores,
	.sobrenos-missao {
		padding: 64px 0;
	}

	.sobrenos-layout {
		gap: 48px;
		margin-top: 48px;
	}

	.sobrenos-text h2 {
		font-size: 2.2rem;
	}

	.sobrenos-section-title {
		font-size: 2.5rem;
	}

	.missao-grid {
		gap: 48px;
		margin-top: 48px;
	}

	.missao-card {
		padding: 36px;
	}

	.cta-section {
		padding: 80px 0;
	}

	.cta-section h2 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.sobrenos-container {
		padding: 0 16px;
	}

	.sobrenos-hero h1 {
		font-size: 2rem;
	}

	.missao-card {
		padding: 28px;
	}
}

