/* Glassmorphism Style - Seção Missão, Visão e Valores */

/* Background com overlay mais leve para visualizar a imagem */
.section-wrap.bg-dark-overlay {
	position: relative;
	background-size: cover !important;
	background-position: center !important;
	background-attachment: fixed !important;
}

.section-wrap.bg-dark-overlay::before {
	background: rgba(0, 0, 0, 0.3) !important;
}

/* Card com efeito glassmorphism e altura fixa */
.process {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Efeito hover no card */
.process:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Ícone com animação */
.process__icon {
	font-size: 56px !important;
	color: #ffffff;
	margin-bottom: 24px;
	display: inline-block;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Hover no ícone - aumenta e rotaciona */
.process:hover .process__icon {
	transform: scale(1.25) rotate(5deg);
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Título */
.process__title {
	color: #ffffff !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	margin-bottom: 16px !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Texto */
.process__text {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 15px !important;
	line-height: 1.7 !important;
	margin: 0 !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Efeito de brilho no hover */
.process::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.process:hover::before {
	opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
	.process {
		margin-bottom: 30px;
		padding: 35px 25px;
		min-height: 300px;
	}

	.process__icon {
		font-size: 48px !important;
	}
}

@media (max-width: 767px) {
	.process {
		padding: 30px 20px;
		min-height: 280px;
	}

	.process__icon {
		font-size: 42px !important;
	}

	.process__title {
		font-size: 20px !important;
	}

	.process__text {
		font-size: 14px !important;
	}
}

@media (max-width: 480px) {
	.process {
		min-height: auto;
		padding: 30px 20px;
	}
}
