/* Variaveis */

: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;
	--cor-fundo-price: #dbdbe4;
	--cor-texto-price: rgb(0, 0, 0);
	--cor-fundo-footer: #262431;
}

/************************/
/* Esilos Gerais */

html {
	height: 100%;
}

body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	color: var(--cor-texto);
	font: 400 0.875rem/1.375rem var(--font-titulo);
}

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

table {
	border-collapse: collapse;
	/* Remove espaços entre as bordas */
}

table,
th,
td,
tr {
	border: none;
	/* Remove as bordas da tabela, cabeçalhos e células */
}

.section-spacer {
	height: 100px;
}

@media (max-width: 768px) {
	.section-spacer {
		height: 60px;
	}
}

@media (max-width: 480px) {
	.section-spacer {
		height: 40px;
	}
}

.details-section {
	padding: 50px 0;
}

.text-container {
	padding: 20px;
}

/* Classe para centralizar conteúdo */
.center-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


/* Estilos para telas maiores (desktop) */
@media (min-width: 992px) {
	.details-section .table {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.details-section .table tr {
		display: flex;
		width: 100%;
	}

	.details-section .table td {
		flex: 1;
		padding: 20px;
	}
}

/* Estilos para telas menores (mobile) */
@media (max-width: 991px) {
	.details-section .table {
		display: block;
		width: 100%;
	}

	.details-section .table tr {
		display: block;
		width: 100%;
	}

	.details-section .table td {
		display: block;
		width: 100%;
		padding: 15px 0;
	}
}

.table {
	border-collapse: collapse;
}

.table td {
	border: none;
	color: var(--cor-texto);
}

/*===========Card Preços==============*/
/* Estilização geral do container */

.row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

#carding-price {
	height: 750px;
	font-size: 2rem;
}

#carding-price .price-tag h5 {
	font-size: 2rem;
	/* Increased size for the "Standard" text */
}

#carding-price .price-tag h1 {
	font-size: 3rem;
	/* Increased size for the price */
}

#carding-price ul li {
	font-size: 1.5rem;
	/* Increased size for the list items */
}

#carding-price .btn_price {
	font-size: 2.5rem;
	/* Increased size for the button text */
	height: 60px;
	display: flex;
	/* Enable flexbox */
	justify-content: center;
	/* Center horizontally */
	align-items: center;
	/* Center vertically */
	text-align: center;
	/* Ensure text alignment */
}

.pricing-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 40px 20px;
	background-color: transparent;
}

/* Estilização do Card */
.card_price {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 35px 25px;
	margin-left: 20px;
	text-align: center;
	width: 320px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito 3D ao passar o mouse */
.card_price:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.price-tag {
	width: 100%;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: white;
	padding: 20px 0;
	font-size: 26px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 12px 12px 0 0;
	/* Arredonda só os cantos superiores */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

/* Título do Plano */
.price-tag h5 {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

/* Preço Destacado */
.price-tag h1 {
	margin: 5px 0 0;
	font-size: 40px;
	font-weight: bold;
}

/* Lista de Benefícios */
.card_price ul {
	list-style: none;
	padding: 20px 0;
	margin: 0;
}

.card_price ul li {
	margin: 12px 0;
	color: #333;
	font-size: 18px;
	display: flex;
	align-items: center;
	text-align: left;
	padding-left: 15px;
}

/* Ícones */
.card_price ul li i {
	color: #00aaff;
	margin-right: 10px;
	font-size: 22px;
}

/* Botão de Ação */
.btn_price {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #fff;
	padding: 14px 30px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	transition: background 0.7s ease, transform 0.2s ease;
}

/* Efeito de Hover no Botão */
.btn_price:hover {
	background: linear-gradient(135deg, #2575fc, #6a11cb);
	transform: scale(1.08);
	transition: 0.7s ease-in-out;
}

/*==================*/



.theme-list {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.theme-list li {
	margin: 5px 0;
	color: var(--cor-fundo-prince);
}

.slider-1 {
	padding-top: 6.875rem;
	padding-bottom: 6.375rem;
	background-color: #262431;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 90%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23f1f1f8'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-1 .swiper-button-next {
	right: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23f1f1f8'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-1 .card {
	position: relative;
	border: none;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 6rem;
	height: 6rem;
	margin-right: auto;
	margin-bottom: 0.25rem;
	margin-left: auto;
	border-radius: 50%;
}

.slider-1 .card-body {
	padding-bottom: 0;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
}

.p-large {
	color: var(--cor-texto);
	font: 400 1.2rem/1.5rem "Open Sans", sans-serif;
}

#prices {
	padding: 50px 0 70px 0; 
	background-color: #ffffff;
}

#prices h3 {
	color: var(--primary-color);
	font: 600 1rem/1.1 var(--font-principal);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

#prices h2 {
	color: var(--secondary-color);
	font: 700 2.25rem/2.75rem var(--font-principal);
	letter-spacing: -1px;
}

.launch-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border: 1px solid #008bdb46;
	border-radius: 999px;
	background-color: rgba(0, 201, 219, 0.1);
	color: var(--secondary-color);
	font: 300 1.05rem/1.2rem var(--font-principal);
	letter-spacing: 0.01em;
	width: fit-content;
	max-width: 100%;
}

.launch-pill svg {
	font-size: 0.95rem;
	line-height: 1;
	color: rgba(0, 201, 219, 1);
	flex: 0 0 auto;
}

.launch-pill span {
	white-space: nowrap;
	font-weight: 600;
	color: #008bdb;
}

.launch-pill .launch-pill-label {
	margin-right: 0.3rem;
}


.plans-compare-block {
	margin-top: 1.25rem;
}

.plans-compare-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	color: var(--primary-color);
	font: 600 1rem/1.2 var(--font-principal);
	text-decoration: none;
}

.plans-compare-link:hover,
.plans-compare-link:focus {
	color: #0078db;
	text-decoration: none;
	opacity: 0.82;
}

.plans-compare-note {
	margin: 0.55rem 0 0;
	color: #94a3b8;
	font: 300 0.8rem/1 var(--font-principal);
}
#prices .prices-cards-row {
	--cards-gap: clamp(1rem, 2.2vw, 2.25rem);
	display: flex;
	width: 95%;
	margin: 2.25rem auto;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--cards-gap);
}
#prices .container {
	max-width: 100%;
	width: 100%;
}

@media (max-width: 1199.98px) {
	#prices .prices-cards-row {
		--cards-gap: clamp(0.9rem, 2.8vw, 2rem);
	}

	#prices .Price-Card {
		flex: 0 0 calc((100% - var(--cards-gap)) / 2);
		max-width: calc((100% - var(--cards-gap)) / 2);
	}
}

@media (max-width: 767.98px) {
	#prices .Price-Card {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.launch-pill {
		padding: 0.65rem 1rem;
		font-size: 0.92rem;
	}

	.launch-pill span {
		white-space: normal;
	}

	.plans-compare-link {
		font-size: 1.35rem;
	}

	.plans-compare-note {
		font-size: 1.02rem;
	}
}

.Price-Card {
	position: relative;
	box-sizing: border-box;
	min-width: 0;
	border: none;
	background: linear-gradient(180deg, var(--secondary-color) 0%, var(--cor-fundo-locais) 100%);
	flex: 0 1 calc((100% - (3 * var(--cards-gap))) / 4);
	width: auto;
	max-width: 285px;
	min-height: 750px;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
	border-radius: 16px;
	padding: 1.2rem 2.2rem ;
	box-shadow: 1px 14px 28px rgba(10, 8, 24, 0.45);
	border: 1px solid rgba(0, 201, 219, 0.18);
}

.price-card-chip {
	position: absolute;
	top: -12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	padding: 0.35rem 0.95rem;
	border-radius: 999px;
	color: #fff;
	font: 700 0.9rem var(--font-principal);
}

.price-card-chip-main {
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--botao-cor-fundo);
	min-width: 52px;
}

.price-card-chip-discount {
	right: 3%;
	background-color: #ff7b23;
	min-width: 22px;
}

.price-card-title {
	margin: 1.05rem 0 0.15rem;
	color: var(--primary-color);
	font: 600 1.05rem/1.1 var(--font-principal);
}

.price-card-subtitle {
	margin: 0;
	color: rgba(241, 241, 248, 0.84);
	font: 500 0.88rem var(--font-principal);
}

.price-card-price {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 0.4rem;
	margin: 0.8rem 0 0;
}

.price-card-old {
	color: rgba(241, 241, 248, 0.5);
	font: 700 1.55rem/1 var(--font-principal);
	text-decoration: line-through;
}

.price-card-current {
	color: var(--cor-texto);
	font: 800 2.8rem/1 var(--font-principal);
}

.price-card-period {
	color: rgba(241, 241, 248, 0.78);
	font: 600 1.45rem/1 var(--font-principal);
}

.price-card-extra {
	margin: 0.2rem 0 1.5rem;
	color: rgba(241, 241, 248, 0.7);
	font: 500 0.86rem/1.25 var(--font-principal);
}

.price-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.price-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.62rem;
	margin-bottom: 0.64rem;
	color: rgba(255, 255, 255, 0.92);
	font: 500 1rem var(--font-principal);
	text-align: left;
}

.price-card-features li i {
	margin-top: 0.22rem;
	color: var(--fas-cor);
	font-size: 0.85rem;
	flex: 0 0 auto;
}

.price-card-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 44px;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	font: 700 1.1rem/1 var(--font-principal);
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.price-card-btn-default {
	background-color: #00bdbd;
	color: var(--botao-cor-texto);
}

.price-card-btn-default:hover,
.price-card-btn-default:focus {
	background-color: #079292;
	color: #ffffff;
	text-decoration: none;

}

.price-card-btn-growth {
	background-color: #079292;
	color: #ffffff;
}

.price-card-btn-growth:hover,
.price-card-btn-growth:focus {
	background-color: #0a9c9c;
	color: #ffffff;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}
.Price-Card.price-card-light:hover{
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

}
.Price-Card.price-card-light {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #ffffff;
	border: 1px solid rgba(152, 168, 168, 0.25);
	box-shadow: 0 10px 30px rgba(25, 36, 44, 0.12);
}

.Price-Card.price-card-light .price-card-chip-discount {
	background-color: #ff7b23;
}

.Price-Card.price-card-light .price-card-title {
	color: #5f7480;
	font-size: 1.05rem;
	margin: 1.05rem 0 0.15rem;
}

.Price-Card.price-card-light .price-card-title-personalized {
	color: #192026;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 1.5rem;
	margin-bottom: 0.7rem;
	width: 100%;
	overflow-wrap: anywhere;
}

.Price-Card.price-card-light .price-card-subtitle,
.Price-Card.price-card-light .price-card-old,
.Price-Card.price-card-light .price-card-period,
.Price-Card.price-card-light .price-card-extra,
.Price-Card.price-card-light .price-card-features li {
	color: #5f6f79;
}

.Price-Card.price-card-light .price-card-current {
	color: #11181f;
}

.Price-Card.price-card-light .price-card-features li i {
	color: var(--primary-color);
}

.Price-Card.price-card-light .price-card-btn-default {
	margin-bottom: 0.5rem;
	background-color: rgba(0, 201, 219, 0.15);
	color: #118597;
}

.Price-Card.price-card-light .price-card-btn-default:hover,
.Price-Card.price-card-light .price-card-btn-default:focus {
	background-color: #079292;
	color: #ffffff;
}

.p-small {
	color: var(--cor-texto);
	font: 400 0.75rem/1.25rem var(--font-titulo);
}

.Texto-Local {
	font: italic 400 1rem/1.5rem var(--font-titulo);
}

.Nome-Local {
	font: 700 1rem/1.5rem var(--font-principal);
}

.slider-Locais .Texto-Local {
	margin-bottom: 0;
}

.li-contactos li {
	margin-bottom: 0.375rem;
}

.indent {
	padding-left: 1.25rem;
}

h1 {
	color: var(--cor-texto);
	font: 700 2.5rem/2.875rem var(--font-principal);
}

h2 {
	color: var(--cor-texto);
	font: 700 2.25rem/2.75rem var(--font-principal);
}

h3 {
	color: var(--cor-texto);
	font: 700 1.75rem/2.125rem var(--font-principal);
}

h4 {
	color: var(--cor-texto);
	font: 700 1.375rem/1.75rem var(--font-principal);
}

h5 {
	color: var(--cor-texto);
	font: 700 1.125rem/1.625rem var(--font-principal);
}

h6 {
	color: var(--cor-texto);
	font: 700 1rem/1.5rem var(--font-principal);
}

a {
	color: var(--cor-texto);
	text-decoration: underline;
}

a:hover {
	color: var(--cor-texto);
	text-decoration: underline;
}

a.turquoise {
	color: #00c9db;
}

a.white {
	color: #fff;
}

.testimonial-text {
	font: italic 400 1rem/1.5rem var(--font-titulo);
}

.custom-img {
	max-width: 100%;
	height: auto;
}

.testimonial-author {
	font: 700 1rem/1.5rem var(--font-principal);
}

.btn-preview-solid {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border-radius: 2rem;
	background-color: var(--botao-cor-fundo);
	color: var(--botao-cor-texto);
	font: 700 0.75rem/0 var(--font-principal);
	text-decoration: none;
	transition: all 0.2s;
}

.btn-preview-solid:hover {
	background-color: transparent;
	color: var(--botao-cor-texto);
	text-decoration: none;
}

.btn-stores-solid {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid var(--botao-cor-fundo);
	border-radius: 2rem;
	background-color: var(--botao-cor);
	color: var(--botao-cor-texto);
	font: 700 0.75rem/0 var(--font-principal);
	text-decoration: none;
	transition: all 0.2s;
}

.btn-stores-solid:hover {
	background-color: var(--botao-cor-fundo);
	color: var(--botao-cor-texto);
	text-decoration: none;
}

.btn-stores-solid .fab {
	margin-right: 0.5rem;
	font-size: 1.25rem;
	line-height: 0;
	vertical-align: top;
}

.btn-stores-solid .fab.fa-google-play {
	font-size: 1rem;
}

.btn-voltar-preview {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border: 0.125rem solid var(--secondary-color);
	border-radius: 2rem;
	background-color: var(--botao-cor-fundo);
	color: var(--text-color);
	font: 700 0.75rem/0 var(--font-principal);
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid var(--botao-cor-fundo);
	border-radius: 2rem;
	background-color: transparent;
	color: var(--botao-cor-fundo);
	font: 700 0.75rem/0 var(--font-principal);
	text-decoration: none;
	transition: all 0.2s;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}

.label-control {
	position: absolute;
	top: 0.87rem;
	left: 1.375rem;
	color: var(--cor-texto);
	opacity: 1;
	font: 400 0.875rem/1.375rem var(--font-titulo);
	cursor: text;
	transition: all 0.2s ease;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	.label-control {
		top: 0.9375rem;
	}
}

.custom-img {
	width: 100%;
	height: auto;
	margin-top: 25px;
	border-radius: 10px;
	/* Adiciona bordas arredondadas */
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
	top: 0.125rem;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block;
	/* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.0625rem;
	padding-bottom: 0.0625rem;
	padding-left: 1.3125rem;
	border: 1px solid #9791ae;
	border-radius: 0.25rem;
	background-color: #413d52;
	color: #f1f1f8;
	font: 400 0.875rem/1.875rem var(--font-titulo);
	transition: all 0.2s;
	-webkit-appearance: none;
	/* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3rem;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	.form-control-input {
		padding-top: 1.25rem;
		padding-bottom: 0.75rem;
		line-height: 1.75rem;
	}

	.form-control-select {
		padding-top: 0.875rem;
		padding-bottom: 0.75rem;
		height: 3.125rem;
		line-height: 2.125rem;
	}
}

select {
	/* you should keep these first rules in place to maintain cross-browser behavior */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url('../images/down-arrow.png');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	outline: none;
}

select::-ms-expand {
	display: none;
	/* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
	display: block;
	/* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 8rem;
	/* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.3125rem;
	border: 1px solid #9791ae;
	border-radius: 0.25rem;
	background-color: #413d52;
	color: var(--cor-texto);
	font: 400 0.875rem/1.75rem var(--font-titulo);
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #f1f1f8;
	outline: none;
	/* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #f1f1f8;
}

.checkbox {
	font: 400 0.75rem/1.25rem var(--font-titulo);
}

input[type='checkbox'] {
	vertical-align: -15%;
	margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	input[type='checkbox'] {
		vertical-align: -9%;
	}
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.125rem;
	border: 1px solid var(--botao-cor-fundo);
	border-radius: 1.5rem;
	background-color: var(--botao-cor-fundo);
	color: #fff;
	font: 700 0.75rem/1.75rem var(--font-principal);
	cursor: pointer;
	transition: all 0.2s;
}

#cmsgSubmit.h3.text-center.tada.animated,
#pmsgSubmit.h3.text-center.tada.animated,
#cmsgSubmit.h3.text-center,
#pmsgSubmit.h3.text-center {
	display: block;
	margin-bottom: 0;
	color: var(--cor-texto);
	font: 400 1.125rem/1rem var(--font-titulo);
}

.help-block.with-errors .list-unstyled {
	color: var(--cor-texto);
	font-size: 0.75rem;
	line-height: 1.125rem;
	text-align: left;
}

@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
	transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/* end of fade-move animation for preview - magnific popup */

/* Fade Animation For Image Slider - Magnific Popup */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation: fadeOut 0.8s;
	animation: fadeOut 0.8s;
}

.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--cor-fundo-wrapper);
}

.spinner {
	position: absolute;
	top: 50%;
	/* centers the loading animation vertically one the screen */
	left: 50%;
	/* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem;
	/* is width and height divided by two */
	text-align: center;
}

.spinner>div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/**************************/
/*     03. Navigation     */
/**************************/

.navbar-custom {
	background-color: transparent;
	font: 700 1rem/2rem var(--font-principal);
	transition: background-color 0.2s ease-in-out;
}

.navbar-custom.navbar-scrolled,
.navbar-custom.top-nav-collapse {
	background-color: var(--cor-fundo-nav);
}

@media (max-width: 767px) {
	.navbar-custom {
		background-color: var(--cor-fundo-nav);
	}
}

.navbar-custom .navbar-brand.logo-image img {
	width: 113px;
	height: 100%;
	margin-bottom: 1px;
	-webkit-backface-visibility: hidden;
}

.navbar-custom .navbar-brand.logo-text {
	font: 700 2.375rem/1.5rem var(--font-principal);
	color: var(--botao-cor-texto);
	letter-spacing: -0.5px;
	text-decoration: none;
}

.navbar-custom .navbar-nav {
	margin-top: 0.75rem;
}

.navbar-custom .nav-item .nav-link {
	padding: 0.25rem 0.75rem;
	/* Ajuste o padding conforme necessário */
	color: var(--botao-cor-texto);
	text-decoration: none;
	transition: all 0.2s ease;
}

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

/* Dropdown Menu */
.navbar-custom .dropdown:hover>.dropdown-menu {
	display: block;
	/* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.navbar-custom .dropdown-toggle:focus {
	/* removes dropdown outline on focus  */
	outline: 0;
}

.navbar-custom .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0.25rem;
	background-color: var(--cor-fundo-nav);
}

.navbar-custom .dropdown-item {
	color: var(--botao-cor-texto);
	text-decoration: none;
}

.navbar-custom .dropdown-item:hover {
	background-color: var(--cor-fundo-dropdown);
}

.navbar-custom .dropdown-item .item-text {
	font: 700 0.75rem/1.5rem var(--font-principal);
}

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

.navbar-custom .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: var(--secondary-color);
	opacity: 0.2;
}

.navbar-custom .social-icons {
	display: none;
}

.custom-img {
	max-width: 100%;
	width: 100%;
	/* ou uma largura específica, ex: 500px */
	height: auto;
	display: block;
}

.navbar-custom .navbar-toggler {
	border: none;
	color: var(--botao-cor-texto);
	font-size: 2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times {
	display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars {
	display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars {
	display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times {
	display: inline-block;
	margin-right: 0.125rem;
}


/*********************/
/*    04. Header     */
/*********************/

.header {
	background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
}

.header .header-content {
	padding-top: 8.5rem;
	padding-bottom: 7rem;
	text-align: center;
}

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

.header h1 {
	margin-bottom: 1rem;
}

.Price-Card.price-card-light .price-card-btn:not(.price-card-btn-growth):hover,
.Price-Card.price-card-light .price-card-btn:not(.price-card-btn-growth):focus {
	background-color: #079292;
	color: #ffffff;
}

.header .p-large {
	margin-bottom: 2rem;
}

.header .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 1.25rem;
}

.h1-header {
	color: var(--cor-texto);
}

/****************************/
/*     05. Locais           */
/****************************/

.slider-Locais {
	padding-top: 5.5rem;
	padding-bottom: 5.5rem;
	background-color: var(--cor-fundo-locais);
}

/* New Header */
.locais-header-new {
	margin-bottom: 1.5rem;
}

.locais-pretitle {
	font: 600 0.875rem/1.4 var(--font-principal);
	color: #00c9db;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.locais-maintitle {
	font: 700 2.5rem/1.2 var(--font-principal);
	color: var(--cor-texto);
	margin-bottom: 1rem;
}

.locais-maintitle .highlight-green {
	color: #00c9db;
}

.locais-subtitle-new {
	font: 400 1.125rem/1.65 var(--font-titulo);
	color: rgba(241, 241, 248, 0.72);
	max-width: 600px;
	margin: 0 auto;
}

/* Detailed Slider Layout */
.locais-detailed-slider {
	position: relative;
	margin-bottom: 0;
}

.locais-main-slider {
	width: 100%;
	overflow: hidden;
}

.locais-slide-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	padding: 0 1rem;
}

/* Image Section */
.locais-slide-image-section {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	background: linear-gradient(150deg, #2f2c3d 0%, #1e1c2e 100%);
}

.locais-badge {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	background: rgba(255, 255, 255, 0.95);
	color: #262431;
	font: 600 0.875rem/1 var(--font-principal);
	padding: 0.5rem 1rem;
	border-radius: 1.25rem;
	z-index: 10;
}

.locais-main-image {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

.locais-image-nav {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
	z-index: 10;
}

.locais-nav-btn {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	color: #262431;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.locais-nav-btn:hover {
	background: #fff;
	transform: scale(1.05);
}

/* Content Section */
.locais-slide-content {
	padding: 2rem 0;
}

.locais-icon-wrap {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 201, 219, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.locais-icon-wrap i {
	font-size: 1.75rem;
	color: #00c9db;
}

.locais-content-title {
	font: 700 2rem/1.2 var(--font-principal);
	color: var(--cor-texto);
	margin-bottom: 1rem;
}

.locais-content-desc {
	font: 400 1rem/1.65 var(--font-titulo);
	color: rgba(241, 241, 248, 0.72);
	margin-bottom: 1.5rem;
}

.locais-features-list {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.locais-features-list li {
	font: 400 0.9375rem/1.6 var(--font-titulo);
	color: rgba(241, 241, 248, 0.85);
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.locais-features-list li i {
	font-size: 0.5rem;
	color: #00c9db;
}

/* Thumbnails */
.locais-thumbnails {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.locais-thumb {
	width: 5rem;
	height: 5rem;
	border-radius: 0.75rem;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: border-color 0.35s ease, opacity 0.35s ease, transform 0.2s ease;
	opacity: 0.6;
	position: relative;
	will-change: border-color, opacity;
}

.locais-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.locais-thumb:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.locais-thumb.active {
	border-color: #00c9db;
	opacity: 1;
}

/* Bottom CTA */
.locais-cta-row {
	margin-top: 1rem;
}

.locais-cta-hint {
	color: rgba(241, 241, 248, 0.6);
	font: 400 0.9rem/1.5 var(--font-titulo);
	margin-bottom: 1.5rem;
}

/* Tablet Grande */
@media (max-width: 991px) {
	.slider-Locais {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.locais-header-new {
		margin-bottom: 2rem;
	}

	.locais-maintitle {
		font-size: 2rem;
	}

	.locais-subtitle-new {
		font-size: 1rem;
		max-width: 90%;
	}

	.locais-slide-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 0 0.5rem;
	}

	.locais-main-image {
		height: 350px;
	}

	.locais-slide-content {
		padding: 1rem 0;
	}

	.locais-content-title {
		font-size: 1.5rem;
	}

	.locais-content-desc {
		font-size: 0.95rem;
	}

	.locais-features-list {
		margin-bottom: 1.5rem;
	}

	.locais-features-list li {
		font-size: 0.875rem;
		padding: 0.4rem 0;
	}

	.locais-thumb {
		width: 4.5rem;
		height: 4.5rem;
	}
}

/* Tablet Pequeno */
@media (max-width: 768px) {
	.locais-pretitle {
		font-size: 0.8125rem;
	}

	.locais-maintitle {
		font-size: 1.75rem;
	}

	.locais-subtitle-new {
		font-size: 0.95rem;
	}


	.locais-main-image {
		height: 300px;
	}

	.locais-icon-wrap {
		width: 3.5rem;
		height: 3.5rem;
		margin-bottom: 1.25rem;
	}

	.locais-icon-wrap i {
		font-size: 1.5rem;
	}

	.locais-content-title {
		font-size: 1.375rem;
		margin-bottom: 0.875rem;
	}
}

/* Mobile */
@media (max-width: 575px) {
	.slider-Locais {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.locais-header-new {
		margin-bottom: 1.5rem;
	}

	.locais-pretitle {
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}

	.locais-maintitle {
		font-size: 1.5rem;
		line-height: 1.3;
		margin-bottom: 0.75rem;
	}

	.locais-subtitle-new {
		font-size: 0.875rem;
		max-width: 100%;
		line-height: 1.5;
	}

	.locais-slide-layout {
		padding: 0;
		gap: 1.25rem;
	}

	.locais-main-image {
		height: 220px;
		border-radius: 1rem;
	}

	.locais-slide-image-section {
		border-radius: 1rem;
	}

	.locais-badge {
		top: 0.75rem;
		left: 0.75rem;
		font-size: 0.6875rem;
		padding: 0.375rem 0.75rem;
		border-radius: 1rem;
	}

	.locais-image-nav {
		bottom: 0.75rem;
		gap: 0.5rem;
	}

	.locais-nav-btn {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 0.75rem;
	}

	.locais-slide-content {
		padding: 0.5rem 0;
	}

	.locais-icon-wrap {
		width: 3rem;
		height: 3rem;
		margin-bottom: 1rem;
	}

	.locais-icon-wrap i {
		font-size: 1.25rem;
	}

	.locais-content-title {
		font-size: 1.125rem;
		margin-bottom: 0.75rem;
	}

	.locais-content-desc {
		font-size: 0.875rem;
		margin-bottom: 1rem;
		line-height: 1.6;
	}

	.locais-features-list {
		margin-bottom: 1.25rem;
	}

	.locais-features-list li {
		font-size: 0.8125rem;
		padding: 0.375rem 0;
		gap: 0.5rem;
	}

	.locais-features-list li i {
		font-size: 0.375rem;
	}

	.locais-thumbnails {
		gap: 0.5rem;
	}

	.locais-thumb {
		width: 3.5rem;
		height: 3.5rem;
		border-radius: 0.5rem;
		border-width: 2px;
	}

	.locais-cta-row {
		margin-top: 1.5rem;
	}

	.locais-cta-hint {
		font-size: 0.8125rem;
		line-height: 1.4;
		margin-bottom: 1rem;
	}
}

/**********************************/
/*     11. Details Lightboxes     */
/**********************************/

.app-mobile-seccao {
	padding-top: 6.25rem;
	padding-bottom: 6.25rem;
	background-color: var(--seccao-mobile-fundo);
	background-image: url('../images/header-background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.preview-basic {
	position: relative;
	max-width: 46.875rem;
	margin: 2.5rem auto;
	padding: 3rem 1rem;
	border-radius: 0.25rem;
	background-color: var(--cor-fundo-locais);
	text-align: left;
	color: var(--cor-texto);
}

.preview-basic img {
	display: block;
	margin-right: auto;
	margin-bottom: 3rem;
	margin-left: auto;
}

.preview-basic h3 {
	margin-bottom: 0.625rem;
}

.preview-basic hr {
	width: 3.75rem;
	height: 0.125rem;
	margin-top: 0.125rem;
	margin-bottom: 1.125rem;
	margin-left: 0;
	border: 0;
	background-color: var(--cor-fundo-locais);
	text-align: left;
}

.preview-basic h4 {
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
}

.preview-basic table {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}

.preview-basic table tr {
	line-height: 1.75em;
}

.preview-basic table .icon-cell {
	width: 2rem;
	padding-right: 0.25rem;
	color: var(--botao-cor-texto);
	text-align: center;
}

.preview-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	color: var(--botao-cor-texto);
	opacity: 1;
}

.preview-basic a.mfp-close.as-button:hover {
	color: var(--botao-cor-texto);
}

.preview-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.375rem;
	right: -0.375rem;
	width: 2.75rem;
	height: 2.75rem;
	color: var(--botao-cor-texto);
}


/************************/
/*     05. Features     */
/************************/

.tabs {
	padding-top: 6.5rem;
	background-color: var(--cor-fundo-wrapper);
}

.tabs h2 {
	margin-bottom: 1.125rem;
	text-align: center;
}

.tabs .p-heading {
	margin-bottom: 3.125rem;
}

.tabs .nav-tabs {
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
	justify-content: center;
	border-bottom: none;
}

.tabs .nav-link {
	margin-bottom: 1rem;
	padding: 0.5rem 1.375rem 0.25rem 1.375rem;
	border: none;
	border-bottom: 0.1875rem solid var(--botao-cor-texto);
	border-radius: 0;
	color: var(--cor-texto);
	font: 700 1rem/1.75rem var(--font-principal);
	text-decoration: none;
	transition: all 0.2s ease;
}

.tabs .nav-link.active,
.tabs .nav-link:hover {
	border-bottom: 0.1875rem solid var(--botao-cor-fundo);
	background-color: transparent;
	color: var(--botao-cor-fundo);
}

.tabs .nav-link .fas {
	margin-right: 0.375rem;
	font-size: 1rem;
}

.tabs .tab-content {
	width: 100%;
	/* for proper display in IE11 */
}

.tabs .card {
	border: none;
	background: transparent;
}

.tabs .card-body {
	padding: 1rem 0 1.25rem 0;
}

.tabs .card-title {
	margin-bottom: 0.5rem;
}

.tabs .card .card-icon {
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background-color: var(--fas-cor);
	text-align: center;
	vertical-align: top;
}

.tabs .card .card-icon .fas,
.tabs .card .card-icon .far {
	color: var(--botao-cor-texto);
	font-size: 1.75rem;
	line-height: 3.5rem;
}

.tabs #tab-1 .card.left-pane .card-body {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.tabs #tab-1 .card.left-pane .text-wrapper {
	flex: 1;
	text-align: right;
}

.tabs #tab-1 .card.left-pane .card-icon {
	margin-left: 1rem;
	flex-shrink: 0;
}

.tabs #tab-1 img {
	display: block;
	margin: 2rem auto 3rem auto;
}

.tabs #tab-1 .card.right-pane .card-body {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.tabs #tab-1 .card.right-pane .text-wrapper {
	flex: 1;
}

.tabs #tab-1 .card.right-pane .card-icon {
	margin-right: 1rem;
	flex-shrink: 0;
}

.tabs #tab-2 img {
	display: block;
	margin: 0 auto 2rem auto;
}

.tabs #tab-2 .text-area {
	margin-top: 1.5rem;
}

.tabs #tab-2 h3 {
	margin-bottom: 0.75rem;
}

.tabs #tab-2 .icon-cards-area {
	margin-top: 2.5rem;
}

.tabs #tab-2 .icon-cards-area .card {
	width: 100%;
	/* for proper display in IE11 */
}

.tabs #tab-3 .icon-cards-area .card {
	width: 100%;
	/* for proper display in IE11 */
}

.tabs #tab-3 .text-area {
	margin-top: 0.75rem;
	margin-bottom: 4rem;
}

.tabs #tab-3 h3 {
	margin-bottom: 0.75rem;
}

.tabs #tab-3 img {
	margin: 0 auto 3rem auto;
}

.table-stacked td {
	text-align: center;
	vertical-align: top;
	padding: 20px;
}

.table-stacked .text-container h3 {
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.table-stacked .text-container p {
	margin-bottom: 15px;
	font-size: 1rem;
	text-align: justify;
}

.table-stacked .btn-preview-solid {
	display: inline-block;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.table-stacked td {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	.table-stacked {
		border-collapse: separate;
		border-spacing: 0 15px;
	}
}

/***************************/
/*     12. Screenshots     */
/***************************/
.slider-screenshot {
	padding-top: 6.875rem;
	padding-bottom: 6.875rem;
}

.slider-screenshot .slider-container {
	position: relative;
}

.slider-screenshot .swiper-container {
	position: static;
	width: 90%;
	text-align: center;
}

.slider-screenshot .swiper-button-prev,
.slider-screenshot .swiper-button-next {
	top: 50%;
	width: 1.125rem;
}

.slider-screenshot .swiper-button-prev:focus,
.slider-screenshot .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-screenshot .swiper-button-prev {
	left: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-screenshot .swiper-button-next {
	right: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

/************************/
/*     13. Download     */
/************************/
.basic-4 {
	padding-top: 6.5rem;
	padding-bottom: 6.75rem;
	background: url('../images/download-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-4 .text-container {
	margin-bottom: 3.5rem;
	text-align: center;
}

.basic-4 h2 {
	margin-bottom: 1.25rem;
}

.basic-4 .p-large {
	margin-bottom: 1.75rem;
}

.basic-4 .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 1.25rem;
}

/***********************/
/*     16. Contact     */
/***********************/

.form {
	padding: 4.25rem 0;
	background: url('../images/contact-background.jpg') center bottom no-repeat;
	background-size: cover;
}

.form h2 {
	margin-bottom: 1.125rem;
	text-align: center;
}

.form .list-unstyled {
	margin-bottom: 3.75rem;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
}

.form .list-unstyled .fas,
.form .list-unstyled .fab {
	margin-right: 0.5rem;
	font-size: 0.875rem;
	color: var(--primary-color);
}

.form .list-unstyled .fa-phone {
	vertical-align: 3%;
}

.li-contactos a {
	text-decoration: none;
}

/**********************************/
/*     18. Back To Top Button     */
/**********************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 1.875rem;
	background: #00c9db url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 1.125rem 1.125rem;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: var(--botao-cor-fundo)
}

/*****************************/
/*     20. Media Queries     */
/*****************************/
/* Min-width width 768px */
@media (min-width: 768px) {

	/* General Styles */
	.p-heading {
		width: 85%;
		margin-right: auto;
		margin-left: auto;
	}

	h1 {
		font: 700 3.25rem/3.75rem var(--font-principal);
	}

	/* end of general styles */


	/* Navigation */
	.navbar-custom {
		background-color: transparent;
	}

	.navbar-custom .navbar-brand.logo-text {
		color: var(--cor-fundo-nav);
	}

	.navbar-custom .navbar-nav {
		margin-top: 0;
		/* Ajuste a margem conforme necessário */
	}

	.btn-demo {
		display: inline-block;
		padding: 0.3rem 1.5rem;
		background: linear-gradient(135deg, #7e6b18, #f7c458);
		color: #fff !important;
		border-radius: 25px;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none;
		transition: background 0.2s, color 0.2s;
		margin-left: 10px;
		border: none;
	}

	.btn-demo:hover,
	.btn-demo:focus {
		background: linear-gradient(135deg, #f8cd0e, #eca407);
		color: #fff !important;
		text-decoration: none;
	}

	.navbar-custom .nav-item .nav-link {
		padding: 0.25rem 0.75rem 0.25rem 0.75rem;
		color: var(--botao-cor-texto);
	}

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

	.navbar-custom.top-nav-collapse {
		padding: 0.5rem 1.5rem 0.5rem 2rem;
		background-color: var(--cor-fundo-nav);
	}

	.navbar-custom.top-nav-collapse .navbar-brand.logo-text {
		color: var(--botao-cor-texto);
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link {
		color: var(--botao-cor-texto);
	}

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

	.navbar-custom .dropdown-menu {
		box-shadow: 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.03);
	}

	.navbar-custom .dropdown-item {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.navbar-custom .dropdown-items-divide-hr {
		width: 84%;
	}

	/* end of navigation */

	/* Header */
	.header .header-content {
		padding-top: 11rem;
	}

	/* end of header */


	/* end of testimonials */


	/* Features */
	.tabs .card .card-icon {
		width: 4.5rem;
		height: 4.5rem;
	}

	.tabs .card .card-icon .fas,
	.tabs .card .card-icon .far {
		font-size: 2.25rem;
		line-height: 4.5rem;
	}

	.tabs #tab-1 .card.left-pane .text-wrapper {
		flex: 1;
	}

	.tabs #tab-2 img {
		margin-bottom: 0;
	}

	.tabs #tab-2 .text-area {
		margin-top: 0;
	}

	.tabs #tab-2 .icon-cards-area .card {
		display: inline-block;
		width: 44%;
		margin-right: 2.5rem;
		vertical-align: top;
	}

	.tabs #tab-2 div.card:nth-child(2n+2) {
		margin-right: 0;
	}

	.tabs #tab-3 .text-area {
		margin-bottom: 0;
	}

	.tabs #tab-3 .icon-cards-area .card {
		display: inline-block;
		width: 44%;
		margin-right: 2.5rem;
		vertical-align: top;
	}

	.tabs #tab-3 div.card:nth-child(2n+2) {
		margin-right: 0;
	}

	.tabs #tab-3 img {
		margin-bottom: 0;
	}

	.preview-basic {
		padding: 3rem 3rem;
	}

	.slider-screenshot .swiper-button-prev {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	.slider-screenshot .swiper-button-next {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	.form .list-unstyled li {
		display: inline-block;
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}

	.form .list-unstyled .address {
		display: block;
	}

	/* end of contact */


	/* Extra Pages */
	.ex-basic-2 .text-container.dark {
		padding: 2.5rem 3rem 2rem 3rem;
	}

	.ex-basic-2 .text-container.column {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of extra pages */
}

.p-heading {
	width: 65%;
}

/* end of general styles */


/* Header */
.header .header-content {
	padding-top: 13rem;
	padding-bottom: 10rem;
	text-align: left;
}

.header .text-container {
	margin-top: 6.5rem;
}

/* end of header */


/* Features */
.tabs .card-body {
	padding: 1rem 0 1.5rem 0;
}

.tabs #tab-1 .card.left-pane {
	text-align: right;
}

.tabs #tab-1 .card.left-pane .text-wrapper,
.tabs #tab-1 .card.right-pane .text-wrapper {
	flex: 1;
}

.tabs #tab-1 .card.left-pane .card-icon {
	float: none;
	margin-right: 0;
	margin-left: 1rem;
}

.tabs #tab-1 img {
	margin-top: 0;
	margin-bottom: 0;
}

.tabs #tab-2 .icon-cards-area {
	margin-top: 2.25rem;
}

.tabs #tab-2 .icon-cards-area .card {
	width: 45%;
	margin-right: 3.5rem;
}

.tabs #tab-2 .icon-cards-area .card p {
	margin-bottom: 0.5rem;
}

.tabs #tab-3 .icon-cards-area .card {
	width: 45%;
	margin-right: 3.5rem;
}

.tabs #tab-3 .icon-cards-area .card p {
	margin-bottom: 0.5rem;
}

/* end of features */

.theme-list {
	list-style: none;
	padding: 0;
	text-align: center;
}

.preview-basic img {
	margin-bottom: 0;
	margin-left: 0;
}

.preview-basic h3 {
	margin-top: 0.25rem;
}

.slider-screenshot .swiper-container {
	width: 92%;
}

.basic-4 {
	padding-top: 6.75rem;
}

.basic-4 .text-container {
	margin-top: 7rem;
	margin-bottom: 0;
	text-align: left;
}

.theme-list {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.theme-list li {
	margin: 5px 0;
	color: var(--cor-fundo-prince);
}


/* Min-width width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.p-heading {
		width: 44%;
	}

	/* end of general styles */


	/* Header */
	.header .text-container {
		margin-top: 7.5rem;
		margin-left: 2.5rem;
	}

	.header .image-container {
		margin-left: 3rem;
	}

	/* end of header */

	.tabs #tab-1 .card.first {
		margin-top: 4.25rem;
	}

	.tabs #tab-1 .card {
		margin-bottom: 0.75rem;
	}

	.tabs #tab-1 .card.left-pane .text-wrapper,
	.tabs #tab-1 .card.right-pane .text-wrapper {
		width: 73%;
	}

	.tabs #tab-1 img {
		margin-top: 0;
	}

	.tabs #tab-2 .container {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}

	.tabs #tab-2 .text-area {
		margin-top: 1.5rem;
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.tabs #tab-2 .icon-cards-area {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.tabs #tab-2 .icon-cards-area .card {
		margin-right: 3.875rem;
	}

	.tabs #tab-3 .container {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}

	.tabs #tab-3 .icon-cards-area {
		margin-top: 2rem;
		margin-left: 1rem;
	}

	.tabs #tab-3 .icon-cards-area .card {
		margin-right: 3.875rem;
	}

	.tabs #tab-3 .text-area {
		margin-right: 1.5rem;
		margin-left: 1rem;
	}

	.basic-4 .text-container {
		margin-top: 11rem;
	}

	.basic-4 .image-container {
		margin-left: 3rem;
	}

	.ex-header h1 {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 .form-container {
		margin-left: 1.75rem;
	}

	.ex-basic-2 .image-container-small {
		margin-left: 1.75rem;
	}

	/* end of extra pages */
}

.terms-container {
	padding: 2rem;
	background-color: var(--cor-fundo-wrapper);
	color: var(--text-color);
	font-family: var(--font-principal);
}

.terms-container h1,
.terms-container h2,
.terms-container h3 {
	color: var(--text-color);
	font-family: var(--font-principal);
}

.terms-container h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.terms-container h2 {
	font-size: 2rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.terms-container h3 {
	font-size: 1.5rem;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.terms-container p,
.terms-container li {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

.terms-container a {
	color: var(--primary-color);
	text-decoration: underline;
}


.terms-container a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.terms-container ul {
	list-style-type: disc;
	padding-left: 1.5rem;
}

.terms-container ul li {
	margin-bottom: 0.5rem;
}

.terms-container .last-updated {
	font-size: 0.875rem;
	color: var(--text-color);
	margin-bottom: 2rem;
}

.terms-container .contact-info {
	margin-top: 2rem;
	font-size: 1rem;
}

.terms-container .contact-info strong {
	color: var(--primary-color);
}

.terms-container .index {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.terms-container .index a {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
	text-decoration: underline;
}

.terms-container .index a:hover {
	text-decoration: none;
}


/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {

	/* Ajustar as colunas para ocuparem 100% da largura no mobile */
	.tab-content .col-lg-4,
	.tab-content .col-md-6 {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
		margin-bottom: 1.5rem;
		/* Espaçamento entre as colunas */
	}

	/* Centralizar imagens no mobile */
	.tab-content img {
		display: block;
		margin: 0 auto;
		width: 100%;
		/* Imagem ocupa toda a largura */
		height: auto;
		/* Mantém a proporção */
	}

	/* Ajustar os cards para alinhamento no mobile */
	.tab-content .card {
		margin: 0 auto;
		text-align: center;
		/* Centraliza o conteúdo */
	}

	/* Ajustar o texto dos cards */
	.tab-content .card .text-wrapper {
		text-align: center;
	}

	/* Ajustar o ícone dos cards */
	.tab-content .card .card-icon {
		margin: 0 auto 1rem auto;
		/* Centraliza o ícone */
	}

	/* Ajustar tabelas para rolagem horizontal no mobile */
	.tab-content .table {
		display: block;
		overflow-x: auto;
		width: 100%;
	}

	.tab-content .table td {
		display: block;
		width: 100%;
		margin-bottom: 1rem;
		/* Espaçamento entre células */
	}
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.feature-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	border-radius: 12px;
	padding: 20px;
	background-color: transparent;
	text-align: center;
}

.feature-card h3 {
	margin-bottom: 15px;
	font-size: 20px;
	color: var(--cor-texto);
}

.feature-card p {
	margin-bottom: 30px;
	color: var(--cor-texto);
	flex-grow: 1;
	text-align: justify;
}

/*
.feature-card a {
	background-color: var(--botao-cor-fundo);
	color: var(--botao-cor-texto);
	border: none;
	height: 25px;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

*/

@media (min-width: 768px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}


/************************/
/*     FAQ Section      */
/************************/

.faq-section {
	padding: 5rem 0;
	background-color: var(--cor-fundo-wrapper, #1d2231);
}

.faq-title {
	color: var(--text-color, #fff);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.faq-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.1rem 1.5rem;
	background: transparent;
	border: none;
	outline: none;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: #1d2231;
	cursor: pointer;
	transition: color 0.2s;
	font-family: 'Montserrat', sans-serif;
}

.faq-question:focus,
.faq-question:focus-visible {
	outline: none;
}

.faq-question.active {
	color: var(--primary-color, #00b8d4);
}

.faq-icon {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--primary-color, #00b8d4);
	line-height: 1;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 1.5rem;
}

.faq-answer.open {
	max-height: 300px;
	padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
	margin: 0;
	font-size: 0.95rem;
	color: #444;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 1.5rem;
	}
}


/******************************/
/*    Testemunhos Section      */
/******************************/

.testemunhos-section {
	padding: 4rem 2rem 6rem 2rem;
	background-color: #fff;
}

.testemunhos-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: 95%;
	margin: 0 auto 1.5rem;
}

.testemunhos-line {
	flex: 1;
	height: 1px;
	background-color: #00c9db;
}

.testemunhos-title {
	color: #00c9db;
	font: 700 1.6rem/1.3 'Montserrat', sans-serif;
	letter-spacing: 0.1em;
	text-align: center;
	margin: 0;
}

.testemunhos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.testemunho-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 1rem;
}

.testemunho-avatar-wrap {
	margin-bottom: 0.6rem;
}

.testemunho-avatar-wrap img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.testemunho-initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	overflow: hidden;
	color: #fff;
	font: 700 2rem/130px 'Montserrat', sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.testemunho-name {
	color: #00c9db;
	font: 700 1.05rem/1.4 'Montserrat', sans-serif;
	margin-bottom: 0.5rem;
}

.testemunho-role {
	color: #00b6ad;
	font: 400 0.88rem/1.4 'Montserrat', sans-serif;
	opacity: 1;
	margin-bottom: 0.8rem;
}

.testemunho-text {
	color: #444;
	font: 400 0.92rem/1.65 'Montserrat', sans-serif;
	margin: 0;
	display: block;
	position: relative;
}

.testemunho-text.collapsed {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: calc(0.92rem * 1.65 * 4);
}

.testemunho-text:not(.collapsed) {
	animation: expandText 0.3s ease-out;
}

@keyframes expandText {
	from {
		max-height: calc(0.92rem * 1.65 * 4);
		overflow: hidden;
	}
	to {
		max-height: 1000px;
	}
}

.testemunho-toggle {
	color: #00c9db;
	font: 600 0.85rem/1.4 'Montserrat', sans-serif;
	background: none;
	border: none;
	cursor: pointer;
	margin-top: 0.5rem;
	padding: 0;
	text-decoration: underline;
	transition: opacity 0.2s;
}

.testemunho-toggle:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.testemunhos-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.testemunhos-title {
		font-size: 1.25rem;
	}

	.testemunhos-line {
		max-width: 60px;
	}
}