@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
	--primary:#0080d2;
	--secondary:#22c55e;
	--dark:#0b1120;
	--card:#111827;
	--light-text:#cbd5e1;
}
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:'Poppins',sans-serif;
}
.main {
	background: radial-gradient(circle at 20% 20%, #102a4f, #060b16 60%);
}
.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
	border-color: rgba(255,255,255,.3);
}
.navbar-custom {
	background-color: #01091b;
}
.nav-link-custom {
	color: #fff;
	text-decoration: none;
	&:hover {
		color: var(--secondary);
	}
}
.footer {
	background-color: #01091b;
	color: var(--light-text);
}
.card-solucoes {
	background-color: var(--card);
	color: var(--light-text);
	border: 1px solid var(--light-text);
	border-radius: 10px;
	transition: .2s all;
	&:hover {
		margin-top: -20px;
		transition: .2s all;
	}
	h3 {
		color: var(--secondary);
		font-size: 1rem;
		font-weight: 600;
	}
	h4 {
		color: #fff;
		font-size: 1.25rem;
		font-weight: 600;
	}
}
.card-educweb {
	background-color: var(--card);
	color: var(--light-text);
	border: 1px solid var(--light-text);
	border-radius: 10px;
	transition: .2s all;
	&:hover {
		transform: scale(1.02);
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
		transition: .2s all;
	}
	h3 {
		color: var(--secondary);
		font-size: 1rem;
		font-weight: 800;
		text-align: center;
	}
	h4 {
		color: #0080d2;
		font-size: .85rem;
		font-weight: 800;
		text-align: center;
	}
}
/*flip-card*/
.flip-card {
	background-color: transparent;
	width: 100%;
	height: 500px;
	perspective: 1000px;
	h3 {
		color: var(--secondary);
		font-size: 1rem;
		font-weight: 800;
		text-align: center;
	}
	h4 {
		color: #0080d2;
		font-size: .85rem;
		font-weight: 800;
		text-align: center;
	}
	img {
		border-radius: 10px;
	}
	ul {
		text-align: left;
	}
}
.flip-card-inner {
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
	z-index: 999;
}
.flip-card-front, .flip-card-back {
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	backface-visibility: hidden;
	border-radius: 10px;
}
.flip-card-front {
	background-color: #01091b;
	color: var(--light-text);
	border: 1px solid var(--light-text);
	border-radius: 10px;
	transition: .2s all;
}
.flip-card-back {
	position: absolute;
	top: 0;
	background-color: var(--light-text);
	color: var(--card);
	border: 1px solid var(--light-text);
	border-radius: 10px;
	transform: rotateY(180deg);
}
/*botões*/
.btn-padrao-1 {
	background-color: var(--primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 500;
	padding: 15px;
	transition: .3s all;
	&:hover {
		background-color: var(--secondary);
		color: #fff;
		transition: .2s all;
	}
}
.btn-padrao-2 {
	background-color: var(--secondary);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 500;
	padding: 15px;
	transition: .3s all;
	&:hover {
		background-color: var(--secondary);
		color: #fff;
		transition: .2s all;
	}
}
/*cores*/
.cor-secondary {
	color: var(--secondary);
}
.cor-light {
	color: var(--light-text);
}
.card-educ {
	position: relative;
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(18px);
	overflow: hidden;
}
.card-educ::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(0,255,136,0.12), transparent 60%);
	opacity: 0;
	transition: .6s ease;
}
.card-educ:hover::before {
	opacity: 1;
}
.card-educ:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 
		0 40px 80px rgba(0,0,0,.6),
		0 0 40px rgba(0,255,136,.15);
}
.card-educ {
	opacity: 0;
	transform: translateY(60px) scale(.96);
	transition: 
		opacity .6s ease,
		transform .6s cubic-bezier(.16,.8,.2,1);
}
.card-educ.show-card {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.card-educ.show-card.from-right {
	transform: translateX(0) scale(1);
}
.card-destaque {
	border: 1px solid rgba(0,255,136,0.8);
	box-shadow: 
		0 0 60px rgba(0,255,136,.25),
		0 30px 80px rgba(0,0,0,.7);
	transform: scale(1.05);
}
.card-destaque::after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ff88, transparent);
	animation: glowMove 3s linear infinite;
}
@keyframes glowMove {
	0% { background-position: -200px 0; }
	100% { background-position: 200px 0; }
}
.badge-destaque {
	position: absolute;
	top: 18px;
	right: 18px;
	background: linear-gradient(135deg, #00ff88, #00cc66);
	color: #000;
	font-weight: 900;
	padding: 7px 16px;
	border-radius: 40px;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	box-shadow: 0 0 20px rgba(0,255,136,.6);
}
.card-title {
	color: #ffffff;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: .6px;
}
.price-highlight {
	font-size: 30px;
	font-weight: 900;
	background: linear-gradient(135deg, #00ff88, #00cc66);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.save-box {
	font-size: 12px;
	background: rgba(0,255,136,0.12);
	color: #00ff88;
	padding: 5px 12px;
	border-radius: 30px;
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
}
.btn-cta {
	position: relative;
	background: linear-gradient(135deg, #00ff88, #00cc66);
	border: none;
	border-radius: 40px;
	font-weight: 800;
	padding: 14px;
	font-size: 15px;
	letter-spacing: 1px;
	color: #000;
	transition: all .3s ease;
	overflow: hidden;
}
.btn-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
	transition: .6s;
}
.btn-cta:hover::before {
	left: 100%;
}
.btn-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 0 30px rgba(0,255,136,.7);
}
@media(max-width:768px){
	.card-destaque {
		transform: scale(1.02);
	}
}
	label {
		color: white;
	}
	.main {
		background: radial-gradient(circle at 20% 20%, #0b1f3a, #050b15 70%);
	}
	#quem-somos {
		background: radial-gradient(circle at 30% 20%, rgba(34,197,94,0.08), transparent 60%);
	}
	#quem-somos h2 {
		position: relative;
		display: inline-block;
		margin-bottom: 20px;
	}
	#quem-somos h2::after {
		content: "";
		display: block;
		width: 200px;
		height: 3px;
		background: linear-gradient(90deg, #22c55e, transparent);
		margin-top: 8px;
	}
	.card-parceiro {
		width: 100%;
		min-height: 520px; /* mantém padrão visual */
		display: flex;
		flex-direction: column;
		justify-content: space-between;

		border-radius: 22px;
		border: 1px solid rgba(34,197,94,0.35);
		box-shadow: 0 0 0 1px rgba(34,197,94,0.15);
		background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
		backdrop-filter: blur(12px);
		padding: 30px;

		transition: .35s ease;
	}
	.card-parceiro:hover {
		transform: translateY(-6px);
		box-shadow: 0 20px 60px rgba(0,0,0,.5);
	}
	.btn-parceiro-primary {
		background: linear-gradient(135deg, #22c55e, #16a34a);
		border: none;
		border-radius: 40px;
		font-weight: 600;
		color: #000;
	}
	#contato .container {
		background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
		border: 1px solid rgba(255,255,255,0.08);
		border-radius: 24px;
	}
	.form-control {
		background: rgba(255,255,255,0.06);
		border: 1px solid rgba(255,255,255,0.1);
		color: #fff;
	}
	.form-control:focus {
		background: rgba(255,255,255,0.08);
		border-color: #22c55e;
		box-shadow: 0 0 0 2px rgba(34,197,94,.2);
	}
	.img-parceiro {
		width: 100%;
		height: 300px;
		object-fit: cover;
		border-radius: 16px;
	}
	.card-parceiro h3 {
		letter-spacing: .5px;
	}
	.card-parceiro h6 {
		opacity: .8;
	}
	.btn-parceiro-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 25px rgba(34,197,94,.4);
		color: #000;
	}
	.btn-parceiro-primary {
		transition: .25s ease;
	}
	#contato h2 {
		letter-spacing: .6px;
	}
	#contato p {
		opacity: .85;
	}
	#contato form {
		margin-top: 30px;
	}
	#contato label {
		font-weight: 500;
		font-size: 14px;
	}
	#contato input[type="checkbox"] {
		accent-color: #22c55e;
		transform: scale(1.1);
		margin-right: 6px;
	}
	.btn-padrao-1 {
		background: linear-gradient(135deg, #22c55e, #16a34a);
		border: none;
		border-radius: 50px;
		font-weight: 600;
		padding: 16px;
		font-size: 16px;
		transition: .3s ease;
	}
	.btn-padrao-1:hover {
		transform: translateY(-3px);
		box-shadow: 0 18px 45px rgba(34,197,94,.4);
	}
	.spinner {
		width: 16px;
		height: 16px;
		border: 2px solid rgba(0,0,0,.2);
		border-top: 2px solid #000;
		border-radius: 50%;
		display: inline-block;
		animation: spin .6s linear infinite;
		margin-right: 6px;
	}
	.badge-premium {
		background: rgba(0,112,196,.15);
		color: #60bbff;;
		padding: 6px 16px;
		border-radius: 40px;
		font-size: 12px;
		letter-spacing: .5px;
		border: 1px solid rgba(96, 187, 255,.4);
	}
	@keyframes spin {
		to { transform: rotate(360deg); }
	}