@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i');

:root {
	--primary-color: #00c9db;
	--secondary-color: #201849;
	--text-color: #f1f1f8;
	--botao-cor-fundo: #00c9db;
	--botao-cor-texto: #fff;
	--fas-cor: #00c9db;
	--cor-fundo-nav: #201849;
	--cor-fundo-dropdown: #4633af;
	--cor-fundo-locais: #262431;
	--cor-fundo-wrapper: #2f2c3d;
	--seccao-mobile-fundo: #322f41;
	--cor-texto: #ffffff;
	--cor-texto-js: #00c9db;
	--font-principal: 'Montserrat', sans-serif;
	--font-titulo: 'Open Sans', sans-serif;
}

html {
	min-height: 100%;
}

body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow-x: hidden;
	color: var(--cor-texto);
	font: 400 0.875rem/1.375rem var(--font-titulo);
	background-color: #262431;
}

p {
	width: 100%;
	color: var(--cor-texto);
	font: 400 0.875rem/1.375rem var(--font-titulo);
}

table {
	border-collapse: collapse;
}

table,
th,
td,
tr {
	border: none;
}

a {
	color: inherit;
}

.table-stacked .btn-preview-solid {
	display: inline-block;
	margin-top: 10px;
	width: 100%;
	text-align: center;
}

.ex-header {
	padding-top: 10rem;
	padding-bottom: 4rem;
	background: linear-gradient(to bottom right, #2c1a7e, #5557db);
	text-align: center;
}

.titulo {
	color: var(--cor-texto);
	font-size: 3.5rem;
	font-weight: 700;
	text-align: center;
	padding-top: 35px;
	white-space: nowrap;
}

.navbar-custom {
	background-color: #201849;
	font-size: 1rem;
	padding: 0.75rem 1rem;
}

.navbar-custom .navbar-brand.logo-image img {
	max-width: 100%;
	height: auto;
}

.navbar-custom .navbar-nav {
	align-items: center;
}

.navbar-custom .nav-item .nav-link {
	padding: 0.25rem 0.75rem;
	color: var(--text-color);
	transition: color 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: var(--primary-color);
}

.navbar-custom .dropdown-menu {
	background-color: var(--cor-fundo-dropdown);
	border: none;
}

.navbar-custom .dropdown-item {
	color: var(--text-color);
}

.navbar-custom .dropdown-item:hover {
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--primary-color);
}

.navbar-custom .social-icons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navbar-custom .fa-stack {
	width: 2em;
	height: 2em;
	line-height: 2em;
}

.navbar-custom .fa-stack-2x {
	color: var(--primary-color);
}

.navbar-custom .fa-stack-1x {
	color: var(--secondary-color);
}

.navbar-custom .navbar-toggler {
	border: none;
	color: var(--text-color);
}

.btn-demo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.1rem;
	border: 0.125rem solid var(--primary-color);
	border-radius: 999px;
	color: var(--text-color);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-demo:hover,
.btn-demo:focus {
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
}

.navbar-custom.top-nav-collapse {
	background-color: #201849;
}

.ai-announcement {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	padding: 2rem 0;
	position: relative;
	overflow: hidden;
}

.ai-announcement::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.ai-content {
	text-align: center;
	color: white;
	position: relative;
	z-index: 2;
}

.ai-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	animation: pulse 2s infinite;
	color: var(--primary-color);
	text-shadow: 0 0 20px rgba(0, 201, 219, 0.5);
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

.ai-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease-out;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-subtitle {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease-out 0.3s both;
	opacity: 0.9;
}

.ai-description {
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	animation: fadeInUp 1s ease-out 0.6s both;
	line-height: 1.6;
	opacity: 0.8;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ai-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
	animation: fadeInUp 1s ease-out 0.9s both;
}

.ai-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.ai-feature:hover {
	transform: translateY(-5px);
}

.ai-feature i {
	color: var(--primary-color);
	font-size: 1.2rem;
}

.coming-soon-badge {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b6b, #ee5a52);
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-left: 1rem;
	animation: bounce 2s infinite;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

@media (max-width: 768px) {
	.ex-header {
		padding-top: 5rem;
		padding-bottom: 2.5rem;
	}

	.titulo {
		font-size: clamp(1.6rem, 4vw, 2rem);
		padding-top: 24px;
	}

	.ai-title {
		font-size: 2rem;
		margin-bottom: 0.25rem;
	}

	.ai-subtitle {
		font-size: 1rem;
	}

	.ai-features {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 1rem;
	}

	.coming-soon-badge {
		display: block;
		margin: 0.4rem auto 0;
		margin-left: 0;
		animation: none;
	}
}

@media (max-width: 480px) {
	.ex-header {
		padding-top: 4.5rem;
		padding-bottom: 2rem;
	}

	.titulo {
		font-size: clamp(1.25rem, 5vw, 1.55rem);
		padding-top: 18px;
	}

	.ai-announcement {
		padding: 1.5rem 0;
	}

	.ai-icon {
		font-size: 2.5rem;
	}

	.ai-title {
		font-size: 1.5rem;
	}

	.ai-feature {
		width: 100%;
		justify-content: center;
	}
}
