@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;
}

.basic-2 {
	padding-top: 8rem;
	padding-bottom: 3.5rem;
	background-color: transparent;
}

.basic-2 img {
	margin-bottom: 3.5rem;
}

.basic-2 h3 {
	margin-bottom: 1.125rem;
}

.basic-2 .btn-solid-reg {
	margin-top: 0.5rem;
}

.basic-3 {
	padding-top: 3.5rem;
	padding-bottom: 7.25rem;
	background-color: transparent;
}

.basic-3 .text-container {
	margin-bottom: 3.5rem;
}

.basic-3 h3 {
	margin-bottom: 1.125rem;
}

.basic-3 .btn-solid-reg {
	margin-top: 0.5rem;
}

.basic-2 .card-body,
.basic-3 .card-body {
	display: flex;
	flex-direction: column;
}

.basic-2 .card-body p,
.basic-3 .card-body p {
	margin-left: 30px;
}

.card-paragrafo {
	font-size: 0.8rem;
	text-align: left;
	word-spacing: normal;
	letter-spacing: 0;
	line-height: 1.6;
	hyphens: auto;
	padding-right: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	width: 100%;
}

.card-header {
	display: flex;
	align-items: center;
	background-color: transparent;
	border-color: transparent;
}

.card-icon {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	margin-right: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-icon:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 201, 219, 0.3);
}

.card-icon .fas,
.card-icon .far {
	color: #fff;
	font-size: 1.3rem;
}

.card-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

.fade-in {
	animation: fadeInUp 0.8s ease-out;
}

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

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

.image-slider-container {
	position: relative;
	margin-top: 70px;
	margin-left: 40px;
	transform: scale(1.2);
	overflow: hidden;
	border-radius: 15px;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 400px;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 15px;
	display: block;
	margin: 0 auto;
}

.slider-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: #007bff;
	transform: scale(1.2);
}

.indicator:hover {
	background: rgba(255, 255, 255, 0.8);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-nav:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
	left: 20px;
}

.slider-nav.next {
	right: 20px;
}

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

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

	.basic-2 {
		padding-top: 4rem;
		padding-bottom: 2rem;
	}

	.basic-3 {
		padding-top: 2rem;
		padding-bottom: 3.5rem;
	}

	.image-slider-container {
		margin-top: 30px;
		margin-left: 0;
		transform: scale(1);
	}

	.slider-wrapper {
		height: 250px;
	}

	.slider-nav {
		width: 44px;
		height: 44px;
		font-size: 14px;
	}

	.slider-nav.prev {
		left: 8px;
	}

	.slider-nav.next {
		right: 8px;
	}
}

@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;
	}

	.basic-2,
	.basic-3 {
		padding-top: 2.5rem;
		padding-bottom: 1.5rem;
	}

	.basic-2 .card-body p,
	.basic-3 .card-body p {
		margin-left: 10px;
	}

	.slider-wrapper {
		height: 200px;
	}

	.card-icon {
		width: 3rem;
		height: 3rem;
	}

	.card-icon .fas,
	.card-icon .far {
		font-size: 1.5rem;
	}
}