/* Seção de Serviços - Layout Profissional */
.servicos-principais {
	padding: 80px 0;
	background: #ffffff;
	position: relative;
}

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

.servicos-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

.servicos-header {
	text-align: center;
	margin-bottom: 100px;
	position: relative;
	animation: fadeInUp 0.8s ease-out;
}

.servicos-section-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: #231773;
	margin-bottom: 24px;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.8px;
	position: relative;
	display: inline-block;
	line-height: 1.2;
}

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

.servicos-section-subtitle {
	font-size: 1.2rem;
	color: #64748b;
	margin-top: 32px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: 0.2px;
}

/* Grid de Serviços - Layout Vertical Profissional */
.servicos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-bottom: 0;
}

.servico-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(35, 23, 115, 0.06);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: fadeInUp 0.6s ease-out backwards;
}

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

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

.servico-card:nth-child(3) {
	animation-delay: 0.3s;
}

.servico-card:nth-child(4) {
	animation-delay: 0.4s;
}

.servico-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffc107, #ffd54f);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(35, 23, 115, 0.12);
	border-color: rgba(255, 193, 7, 0.3);
}

.servico-card:hover::before {
	transform: scaleX(1);
}

.servico-card-icon-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	position: relative;
}

.servico-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #231773 0%, #2d1f8a 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	box-shadow: 0 8px 24px rgba(35, 23, 115, 0.2);
}

.servico-icon svg {
	width: 48px;
	height: 48px;
	fill: #ffffff;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card:hover .servico-icon {
	background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
	transform: scale(1.1) translateY(-4px);
	box-shadow: 0 12px 32px rgba(255, 193, 7, 0.35);
}

.servico-card:hover .servico-icon svg {
	fill: #231773;
	transform: scale(1.05);
}

.servico-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.servico-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #231773;
	margin-bottom: 16px;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
	letter-spacing: -0.2px;
}

.servico-card p {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 28px;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.1px;
	flex: 1;
}

.servico-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #231773;
	color: #ffffff;
	padding: 14px 32px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(35, 23, 115, 0.2);
	margin-top: auto;
}

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

.servico-btn:hover {
	background: #1a1255;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(35, 23, 115, 0.3);
	color: #ffffff;
}

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

/* Seção de Diferenciais - Design Refinado */
.servicos-diferenciais {
	padding: 120px 0;
	background: linear-gradient(135deg, #231773 0%, #1a1255 100%);
	position: relative;
	overflow: hidden;
}

.servicos-diferenciais::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.servicos-diferenciais::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.servicos-diferenciais .servicos-container {
	position: relative;
	z-index: 1;
}

.servicos-diferenciais .servicos-header {
	margin-bottom: 80px;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.servicos-diferenciais .servicos-section-title {
	color: #ffffff;
}

.servicos-diferenciais .servicos-section-title::after {
	background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.servicos-diferenciais .servicos-section-subtitle {
	color: rgba(255, 255, 255, 0.85);
}

.diferenciais-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 0;
}

.diferencial-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;
	animation: fadeInUp 0.6s ease-out backwards;
}

.diferencial-item:nth-child(1) {
	animation-delay: 0.3s;
}

.diferencial-item:nth-child(2) {
	animation-delay: 0.4s;
}

.diferencial-item:nth-child(3) {
	animation-delay: 0.5s;
}

.diferencial-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);
}

.diferencial-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);
}

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

.diferencial-item h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
	position: relative;
	z-index: 1;
	letter-spacing: -0.2px;
}

.diferencial-item p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.75;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	z-index: 1;
	letter-spacing: 0.1px;
}

/* CTA Section - Design Elegante */
.cta-section {
	padding: 120px 0;
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

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

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

.cta-section p {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 40px;
	line-height: 1.7;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.1px;
}

.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);
	border: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.4px;
	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;
	color: #231773;
}

.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);
	color: #231773;
}

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

/* Responsividade Otimizada */
@media (max-width: 1400px) {
	.servicos-grid {
		gap: 28px;
	}
}

@media (max-width: 1200px) {
	.servicos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.diferenciais-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (max-width: 992px) {
	.servicos-section-title {
		font-size: 2.6rem;
	}

	.servicos-section-subtitle {
		font-size: 1.1rem;
	}

	.servico-card {
		padding: 40px 28px;
	}

	.servico-icon {
		width: 90px;
		height: 90px;
	}

	.servico-icon svg {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 768px) {
	.servicos-principais {
		padding: 80px 0;
	}

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

	.servicos-header {
		margin-bottom: 60px;
	}

	.servicos-section-title {
		font-size: 2.2rem;
	}

	.servicos-section-subtitle {
		font-size: 1rem;
		margin-top: 24px;
	}

	.servicos-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.servico-card {
		padding: 36px 24px;
		border-radius: 16px;
	}

	.servico-card h3 {
		font-size: 1.4rem;
	}

	.servico-card p {
		font-size: 0.95rem;
	}

	.servico-icon {
		width: 80px;
		height: 80px;
	}

	.servico-icon svg {
		width: 36px;
		height: 36px;
	}

	.diferenciais-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.diferencial-item {
		padding: 36px 28px;
	}

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

	.cta-section p {
		font-size: 1.05rem;
	}

	.cta-btn {
		padding: 16px 36px;
		font-size: 1rem;
	}
}

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

	.servicos-section-title {
		font-size: 1.8rem;
	}

	.servico-card {
		padding: 32px 20px;
	}
}
