@charset "utf-8";
/*
 * CSS Document
 */

@import url("root.css");

@import url("gradients.css");

* {
	outline: none;
	text-decoration: none;
}

img {
	border: 0;
}

body {
	font-family: 'Poppins', Verdana, Arial;
	font-size: 13px;
	font-weight: 300;
	color: var(--color-text);
	background-color: var(--color-white);
	margin: 0;
	padding: 0;
}

#content {
	width: 100%;
	min-height: 100vh;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content header {
	width: 100%;
	height: 600px;
	padding: 20px;
	background: linear-gradient(to right, var(--color-gradient-1), var(--color-gradient-2));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content header.pages {
	height: 116px !important;
}

#content nav {
	width: 100%;
	max-width: 1220px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
	z-index: 100;
}

#content nav > div {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content nav ul.menu-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin-left: -30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content nav ul.menu-desktop li {
	margin: 0 10px;
	position: relative;
}

#content nav ul.menu-desktop li a {
	font-family: var(--font-montserrat);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 500;
	padding: 4px 12px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 4px;
}

#content nav ul.menu-desktop li.dropdown a {
	padding-right: 6px !important;
}

#content nav ul.menu-desktop li a i.arrow {
	margin-top: -1px;
	font-size: 18px;
	transition: transform 0.3s ease;
}

#content nav ul.menu-desktop li:hover>a i.arrow {
	transform: rotate(180deg);
}

#content nav ul.menu-desktop li a.active {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#content nav ul.menu-desktop li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

/* Submenu Dropdown */
#content nav ul.menu-desktop li ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--color-gradient-1);
	background: linear-gradient(to right, #459DC9, #49A9C6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 12px 0;
	margin-top: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 1000;
	pointer-events: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content nav ul.menu-desktop li:hover>ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

#content nav ul.menu-desktop li ul li {
	margin: 0;
	width: 100%;
	display: block;
}

#content nav ul.menu-desktop li ul li a {
	font-family: var(--font-montserrat);
	color: var(--color-white);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 12px 8px 6px;
	border-radius: 0;
	margin: 2px 12px;
	width: auto;
	transition: all 0.2s ease;
	background: transparent;
	display: block;
	white-space: nowrap;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content nav ul.menu-desktop li ul li a i {
	font-size: 20px;
	margin-right: 3px;
	vertical-align: -4px;
	font-weight: 300;
}

#content nav ul.menu-desktop li ul li a:hover {
	font-weight: 500;
	padding-left: 16px;
}

#content nav ul.menu-desktop li ul li.separator {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 8px;
	padding-top: 8px;
}

#content nav ul.menu-desktop li ul li.separator a {
	color: var(--color-gradient-1);
	font-weight: 600;
}

.menu-mobile {
	display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	margin-top: 20px;
  	margin-right: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 102;
	transition: all 0.3s ease;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--color-white);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

.header-content {
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: 1fr 0.6fr;
	align-items: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.header-info {
	width: auto;
	height: 510px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.header-content .title {
	font-family: var(--font-montserrat);
	font-size: 50px;
	font-weight: 700;
	color: var(--color-white);
	text-transform: uppercase;
	line-height: 62px;
	padding-bottom: 10px;
}

.header-content .title mark {
	color: var(--color-white);
	background-color: rgba(255, 255, 255, 0.2);
	padding: 0 8px;
	border-radius: var(--border-radius);
}

.header-content .subtitle {
	font-family: var(--font-montserrat);
	font-size: 20px;
	color: var(--color-white);
	padding-bottom: 50px;
}

.header-image {
	width: 100%;
	height: 510px;
	margin-left: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.header-image .header-image-1 {
	font-size: 90px;
	font-weight: 500;
	height: auto;
	position: absolute;
	top: 60px;
	left: -20px;
	z-index: 3;
	opacity: 0.9;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-1:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.3) rotate(2deg);
}

.header-image .header-image-2 {
	font-size: 106px;
	font-weight: 500;
	height: auto;
	position: absolute;
	top: 30px;
	right: 100px;
	z-index: 2;
	opacity: 0.9;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-2:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.1);
}

.header-image .header-image-3 {
	font-size: 100px;
	font-weight: 500;
	height: auto;
	position: absolute;
	bottom: 60px;
	right: 30px;
	z-index: 1;
	opacity: 0.8;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-3:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.1) rotate(-3deg);
}

.header-image .header-image-4 {
	font-size: 80px;
	font-weight: 500;
	height: auto;
	position: absolute;
	top: 150px;
	left: 80px;
	z-index: 4;
	opacity: 0.85;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-4:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.2) rotate(-5deg);
}

.header-image .header-image-5 {
	font-size: 110px;
	font-weight: 500;
	height: auto;
	position: absolute;
	bottom: 120px;
	left: 25px;
	z-index: 2;
	opacity: 0.75;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-5:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.15) rotate(4deg);
}

.header-image .header-image-6 {
	font-size: 100px;
	font-weight: 500;
	height: auto;
	position: absolute;
	top: 220px;
  	right: 150px;
	z-index: 1;
	opacity: 0.7;
	color: #FFFFFF;
	text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.header-image .header-image-6:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.25) rotate(-2deg);
}

#logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

#logo .logo-name {
	font-family: var(--font-bangers);
	font-size: 70px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
	text-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

#logo .logo-name small {
	font-size: 62px;
}

#logo .logo-description {
	margin: 0 auto;
	font-family: var(--font-montserrat);
	font-weight: 600;
	font-style: italic;
	font-size: 10px;
	color: #FFFFFF;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	text-transform: uppercase;
	margin-top: -10px;
	padding-left: 8px;
}

#logo .logo-icon i {
	font-size: 76px;
	color: #FFFFFF;
	text-shadow: -2px 3px 0 rgba(0, 0, 0, 0.1);
	margin-top: 15px;
	margin-right: -8px;
	position: relative;
	z-index: 1;
	transform: rotate(-90deg);
}

#logo.logo-header {
	margin-top: -16px;
}

#logo.logo-footer {
	margin-top: 30px;
	opacity: 0.3;
	margin-left: -20px;
}

#logo.logo-footer .logo-name {
	font-size: 56px !important;
}

#logo.logo-footer .logo-icon i {
	margin-top: 6px !important;
	font-size: 58px !important;
}

#logo.logo-footer .logo-name small {
	font-size: 52px !important;
}


.demonstration {
	width: 100%;
	padding: 80px 0;
	margin-bottom: 1px;
	background: linear-gradient(to right, var(--color-gradient-3), var(--color-gradient-1));
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.demonstration .container {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 0.6fr;
	gap: 60px;
	align-items: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.demonstration-item {
	width: auto;
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-white);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.demonstration-item i {
	font-size: 26px;
	color: var(--color-white);
	margin-right: 12px;
}

.demonstration-info {
	width: auto;
	height: 260px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-around;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}


.benefits {
	width: 100%;
	padding: 36px 0;
	background-color: #F0F3F8;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-image: url('../image/benefits.png');
}

.benefits .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 36px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.benefits .benefit {
	padding: 0 36px;
}

.benefits .benefit:not(:last-child) {
	border-right: 1px solid rgba(120, 120, 120, 0.15);
}

.benefit-number {
	font-family: var(--font-montserrat);
	font-size: 60px;
	font-weight: 900;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-title {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text);
	margin-top: 12px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-icon {
	width: auto;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.benefit-icon i {
	font-size: 46px;
}

.benefit-description {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 20px;
}

.dashboard-slider {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 80px;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.dashboard-track {
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 650px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard-slide {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%) scale(0.95);
	transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, visibility 0.6s;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	z-index: 1;
}

.dashboard-slide.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) scale(1);
	z-index: 2;
}

.dashboard-image {
	width: 100%;
	max-width: 900px;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
}

.dashboard-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.dashboard-caption {
	text-align: center;
	margin-top: 20px;
}

.dashboard-caption h3 {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 6px;
}

.dashboard-caption p {
	font-family: var(--font-poppins);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.8;
	line-height: 1.6;
}

.dashboard-dots {
	margin-top: 40px;
	margin-bottom: 60px;
}

/* Botões de navegação do slider */
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
	border: 2px solid rgba(59, 130, 246, 0.2);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.slider-btn i {
	font-size: 32px;
	color: #3b82f6;
	transition: color 0.3s ease;
}

.slider-btn.prev {
	left: 0;
}

.slider-btn.next {
	right: 0;
}

/* Indicadores (dots) do slider */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.slider-dots .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dots .dot:hover {
	background: rgba(59, 130, 246, 0.5);
	transform: scale(1.2);
}

.slider-dots .dot.active {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	width: 32px;
	border-radius: 6px;
}

.segments {
	width: 100%;
	padding: 36px 0;
	margin-bottom: 60px;
	background-color: #F0F3F8;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.segments .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	gap: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.segments .segment {
	width: 200px;
	height: 300px;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	box-shadow: 0 6px 8px 0 rgba(120, 120, 120, 0.15);
	transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
	will-change: transform, box-shadow;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.segments .segment:hover {
	cursor: pointer;
	transform: translateY(-10px);
	box-shadow: 0 12px 16px 0 rgba(120, 120, 120, 0.2);
}

.segments-grid {
	width: 100%;
	margin-top: -30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.segments-grid .segment-card:not(:last-child) {
	margin-bottom: 40px;
}

.segment-card {
	width: 100%;
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 32px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.segment-card p {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	text-align: left;
	line-height: 24px;
}

.segment-features {
	width: 100%;
	padding: 0 0 20px 0;
	margin-top: 6px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.segment-features i {
	font-size: 20px;
	color: var(--color-green);
	margin-right: 2px;
	vertical-align: -5px;
}

.segment-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.segment-icon i {
	font-size: 66px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.segment-title {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	margin-top: 12px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.features>div {
	padding: 26px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.feature-icon {
	width: auto;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
}

.feature-icon i {
	font-size: 86px;
	font-weight: 900;
}

.feature-title {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text);
	margin-top: 12px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-title i {
	font-size: 24px;
	margin-right: 6px;
	vertical-align: -5px;
}

.feature-description {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-title {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.section-title.mark {
	color: var(--color-purple) !important;
}

.section-title mark {
	color: var(--color-pink);
	background-color: rgba(115, 88, 189, 0.2);
	padding: 0 8px;
	border-radius: var(--border-radius);
}

.section-description {
	font-family: var(--font-poppins);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.85;
	text-align: center;
	line-height: 1.6;
	max-width: 800px;
	margin: -20px auto 50px;
	padding: 0 20px;
}

/* Botão Glassmorphism Branco */
.btn-glass {
	position: relative;
	font-family: var(--font-nunito);
	letter-spacing: 1px;
	color: var(--color-white);
	background: rgba(100, 100, 100, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--border-radius);
	box-shadow: 0 6px 8px 0 rgba(120, 120, 120, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.btn-glass.small {
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
}

.btn-glass.medium {
	padding: 10px 24px;
	font-size: 16px;
	font-weight: 800;
}

.btn-glass.big {
	padding: 12px 28px;
	font-size: 18px;
	font-weight: 900;
}

.btn-glass::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.btn-glass:hover {
	background: rgba(255, 255, 255, 0.35);
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-glass:hover::before {
	left: 100%;
}






.fields {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	padding-right: 60px;
}

.field {
	width: 100%;
	padding: 6px 12px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.65s ease 0s;
}

input[type="text"] {
	width: 100%;
	max-width: 100%;
	height: 42px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 6px 12px;
	border-radius: 3px;
	display: inline-block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.65s ease 0s;
}

input[type="text"]:focus {
	border: 1px solid #a9aeb4;
}

input[type="text"].iconn {
	text-indent: 26px;
}

select {
	width: 100%;
	max-width: 100%;
	height: 42px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 6px 12px;
	border-radius: var(--border-radius);
	display: inline-block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
	z-index: 1;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: all 0.65s ease 0s;
}

select option {
	font-family: Verdana;
	font-size: 14px;
	font-weight: 300;
	color: var(--color-text);
	padding: 4px 6px;
	background-color: #FFF;
	white-space: normal;
}

select:focus {
	border: 1px solid rgba(0, 0, 0, 0.3);
}




.icons-background {
	width: 100%;
	max-width: 1600px;
	height: 3px;
	margin: 36px auto;
	border-radius: 50%;
	background-color: #F0F3F8;
}

.icons-background i {
	font-size: 16px;
	color: var(--color-cyan);
}

.section-pages {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.section-benefits {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.benefits-content {
	width: 100%;
	display: grid;
	gap: 10px;
	margin-bottom: 100px;
	align-items: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.benefits-content.right {
	grid-template-columns: 1fr 0.4fr;
}

.benefits-content.left {
	grid-template-columns: 0.4fr 1fr;
}

.benefits-content.right .benefits-image {
	text-align: left;
}

.benefits-content.left .benefits-image {
	text-align: right;
}

.benefits-info {
	width: 100%;
}

.benefits-image img {
	margin-top: 20px;
	width: 200px;
	opacity: 0.8;
}

.benefits-description {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	line-height: 32px;
	color: var(--color-text);
	padding: 0 40px;
}

.benefits-title {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
}

.benefits-title i {
	font-size: 24px;
	margin-right: 6px;
	vertical-align: -5px;
}

.benefits-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
}

.benefits-icon i {
	font-size: 56px;
}

.section-mobile-app {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.mobile-app-content {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 0.6fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.mobile-app-info {
	width: 100%;
}

.mobile-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background-color: rgba(240, 243, 248, 0.5);
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
}

/*
.feature-item:hover {
	background-color: rgba(240, 243, 248, 0.8);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
*/

.feature-item .feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-item .feature-icon i {
	font-size: 32px;
	font-weight: 300;
}

.feature-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.feature-text h3 {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 8px 0;
	text-transform: uppercase;
}

.feature-text p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.mobile-app-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-mockup {
	width: 100%;
	max-width: 300px;
	position: relative;
}

.phone-mockup img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/*
.mobile-app-highlights {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
	padding: 40px 0;
	border-top: 1px solid rgba(115, 88, 189, 0.2);
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.1), rgba(255, 130, 188, 0.1));
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
}

.highlight-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(115, 88, 189, 0.2);
}

.highlight-item i {
	font-size: 36px;
	color: var(--color-purple);
	margin-bottom: 12px;
}

.highlight-item span {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-transform: uppercase;
}
*/

/* Novos estilos para Mobile App expandido */
.mobile-modules-grid {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 60px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 32px;
	padding: 0 20px;
	box-sizing: border-box;
}

.module-category {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 32px;
	/* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
	/* border: 1px solid rgba(115, 88, 189, 0.1); */
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;

	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;

}

/*
.module-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
*/

/*
.category-title {
	font-family: var(--font-montserrat);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.category-title i {
	font-size: 28px;
}
*/

.module-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.module-features .feature-item {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.module-features .feature-item:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(8px);
}

.module-features .feature-item .feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	margin-right: 16px;
}

.module-features .feature-item .feature-icon i {
	font-size: 28px;
	color: var(--color-blue);
}

.module-features .feature-text h4 {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 8px;
	margin-top: 0;
}

.module-features .feature-text p {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.8;
	line-height: 1.5;
}

/* Scanner QR Section */
.qr-scanner-section {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	padding: 48px 32px 78px 32px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
	border-radius: 8px;
	border: 1px solid rgba(99, 102, 241, 0.1);
	box-sizing: border-box;
}

.qr-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
}

.qr-info {
	padding-right: 40px;
}

/*
.feature-title {
	font-family: var(--font-montserrat);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-title i {
	font-size: 36px;
}

.feature-description {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin-bottom: 32px;
	opacity: 0.9;
}
*/
.qr-entities {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.entity-item {
	display: flex;
	align-items: center;
	gap: 36px;
	background: rgba(255, 255, 255, 0.8);
	padding: 22px 16px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.entity-item:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.entity-item i {
	font-size: 24px;
	color: var(--color-pink);
}

.entity-item span {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-purple);
}

.qr-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-frame {
	width: 200px;
	height: 360px;
	background: linear-gradient(145deg, #f0f0f0, #cacaca);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	position: relative;
}

.qr-scanner-mockup {
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.scanner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0.3) 40%,
			rgba(0, 0, 0, 0.3) 60%,
			rgba(0, 0, 0, 0.6));
	display: flex;
	align-items: center;
	justify-content: center;
}

.scan-area {
	width: 120px;
	height: 120px;
	border: 2px solid #00ff00;
	border-radius: 8px;
	position: relative;
	animation: scanPulse 2s infinite;
}

.scan-area::before,
.scan-area::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border: 3px solid #00ff00;
}

.scan-area::before {
	top: -3px;
	left: -3px;
	border-right: transparent;
	border-bottom: transparent;
}

.scan-area::after {
	bottom: -3px;
	right: -3px;
	border-left: transparent;
	border-top: transparent;
}

@keyframes scanPulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}

/* Advanced Features Section */
.advanced-features {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
}

.feature-column {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 32px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-column h4 {
	font-family: var(--font-montserrat);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-column h4 i {
	font-size: 24px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	position: relative;
	padding: 12px 0 12px 28px;
	font-size: 15px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.5;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-pink);
	font-weight: 700;
	font-size: 16px;
}

.feature-list li strong {
	font-weight: 600;
	color: var(--color-purple);
}

/* Mobile App Showcase */
.mobile-app-showcase {
	width: 100%;
	max-width: 600px;
	margin: 60px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.phone-mockup-main {
	width: 300px;
	height: 580px;
	background: linear-gradient(145deg, #f5f5f5, #e0e0e0);
	border-radius: 32px;
	padding: 24px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.phone-mockup-main::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: #ccc;
	border-radius: 3px;
}

.phone-mockup-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

/* Enhanced Mobile App Highlights */
.mobile-app-highlights {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	padding: 20px 0;
	margin-top: 48px;
	border-top: 1px solid rgba(115, 88, 189, 0.2);
}

.highlight-item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 24px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	min-height: 100px;
}

.highlight-item i {
	font-size: 36px;
	color: var(--color-purple);
	margin-bottom: 12px;
}

.highlight-item span {
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text);
	margin-top: 4px;
}

.section-pricing {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.pricing-card {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.9));
	border: 2px solid rgba(115, 88, 189, 0.1);
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
	border-color: rgba(115, 88, 189, 0.3);
}

.pricing-card.featured {
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border: 2px solid var(--color-purple);
	transform: scale(1.05);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
	color: var(--color-white);
	padding: 8px 20px;
	border-radius: 8px;
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(115, 88, 189, 0.3);
}

.plan-header {
	margin-bottom: 30px;
}

.plan-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.plan-icon i {
	font-size: 48px;
}

.plan-name {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin-bottom: 8px;
}

/* Legal Pages Styles */
.legal-container {
	max-width: 1000px;
	margin: 0 auto;
	font-family: var(--font-montserrat);
	color: var(--color-text);
	line-height: 1.8;
	font-size: 14px;
	font-weight: 400;
}

.legal-section {
	margin-bottom: 40px;
}

.legal-section h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-purple);
	margin-bottom: 20px;
}

.legal-section h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-dark-blue);
	margin-bottom: 12px;
}

.legal-section p {
	font-size: 15px;
	margin-bottom: 16px;
	font-weight: 400;
}

.legal-section ul {
	font-size: 15px;
	margin-left: 30px;
	margin-bottom: 16px;
}

.legal-section ul.small {
	font-size: 14px;
}

.legal-section li {
	margin-bottom: 8px;
}

.legal-section a {
	color: var(--color-purple);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.legal-section a:hover {
	color: var(--color-pink);
}

.legal-section .subsection {
	margin-bottom: 24px;
}

.legal-section .subsection p:last-child {
	margin-bottom: 12px;
}

.legal-divider {
	border-top: 2px solid var(--color-purple);
	margin: 40px 0;
}

.legal-alert {
	background: rgba(115, 88, 189, 0.05);
	border-left: 4px solid var(--color-purple);
	padding: 20px;
	margin-top: 40px;
	border-radius: 4px;
}

.legal-alert p {
	font-size: 15px;
	margin: 0;
}

/* Contract Specific Styles */
.contract-parties {
	margin-bottom: 40px;
}

.contract-section {
	margin-bottom: 40px;
}

.contract-section h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-purple);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.contract-section p {
	font-size: 15px;
	margin-bottom: 16px;
	font-weight: 400;
}

.contract-section .clause-item {
	margin-bottom: 12px;
	padding-left: 20px;
}

.contract-signatures {
	margin-top: 60px;
	margin-bottom: 40px;
}

.signature-block {
	text-align: center;
	margin-bottom: 60px;
}

.signature-line {
	border-top: 1px solid var(--color-text);
	width: 300px;
	margin: 0 auto 8px;
}

.signature-name {
	font-size: 14px;
	font-weight: 600;
}

.signature-role {
	font-size: 13px;
}

.witness-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.witness-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 600px;
	margin: 0 auto;
}

.witness-item .signature-line {
	margin-bottom: 8px;
}

.witness-item p {
	font-size: 13px;
}

a.link {
	color: var(--color-purple);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

a.link:hover {
	color: var(--color-pink);
}

.plan-description {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.8;
}

.plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 30px;
	gap: 4px;
}

.currency {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-purple);
}

.amount {
	font-family: var(--font-montserrat);
	font-size: 48px;
	font-weight: 900;
	color: var(--color-purple);
}

.period {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.7;
}

.plan-features {
	margin-bottom: 40px;
	text-align: left;
}

.feature {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	gap: 12px;
}

.feature i {
	font-size: 20px;
	color: var(--color-purple);
	flex-shrink: 0;
}

.feature span {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
}

.plan-button {
	margin-top: auto;
}

.plan-button .btn-glass {
	width: 100%;
	background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
	border: none;
	color: var(--color-white);
}

.plan-button .btn-glass:hover {
	background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(115, 88, 189, 0.3);
}

.pricing-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 40px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border-radius: var(--border-radius);
}

.installation-note,
.additional-services-note,
.guarantee-note {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	text-align: center;
}

.installation-note i,
.additional-services-note i,
.guarantee-note i {
	font-size: 22px;
	color: var(--color-purple);
}

.additional-services-note {
	font-size: 13px;
	opacity: 0.85;
	max-width: 800px;
	line-height: 1.5;
}

.section-contact {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.contact-content {
	display: grid;
	grid-template-columns: 0.6fr 1.2fr;
	gap: 30px;
	align-items: flex-start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 31px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 24px;
	border-radius: var(--border-radius);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.9));
	border: 1px solid rgba(115, 88, 189, 0.1);
}

.contact-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon i {
	font-size: 32px;
}

.contact-details h3 {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0 0 8px 0;
}

.contact-details p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.contact-form {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.9));
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: 8px;
	padding: 40px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.form-group label {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	background-color: var(--color-white);
	border: 2px solid rgba(115, 88, 189, 0.1);
	border-radius: 3px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-purple);
	box-shadow: 0 0 0 3px rgba(115, 88, 189, 0.1);
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1.5 4.5h9L6 9z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
}

.form-group textarea {
	resize: none;
	min-height: 100px;
}

.form-actions {
	text-align: center;
	margin-top: 30px;
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	font-family: var(--font-nunito);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(115, 88, 189, 0.3);
}

.btn-contact:hover {
	background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(115, 88, 189, 0.4);
}

.btn-contact i {
	font-size: 20px;
}

.section-team {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.team-content {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.team-info {
	width: 100%;
}

.team-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.team-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-mockup {
	width: 100%;
	max-width: 400px;
	position: relative;
}

.team-mockup img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 80px;
	padding: 60px 0;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border-radius: var(--border-radius);
}

.stat-item {
	text-align: center;
	padding: 20px;
}

/*
.stat-number {
	font-family: var(--font-montserrat);
	font-size: 48px;
	font-weight: 900;
	color: var(--color-purple);
	margin-bottom: 12px;
}

.stat-label {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-transform: uppercase;
}
*/

.section-history {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.history-timeline {
	margin-bottom: 80px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 60px;
	position: relative;
}

.timeline-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 60px;
	top: 103px;
	width: 2px;
	height: 123px;
	background: linear-gradient(to bottom, var(--color-purple), rgba(115, 88, 189, 0.3));
}

.timeline-year {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 900;
	color: var(--color-purple);
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.1), rgba(255, 130, 188, 0.1));
	border-radius: var(--border-radius);
	border: 2px solid rgba(115, 88, 189, 0.2);
}

.timeline-content {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 26px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 243, 248, 0.2));
	border-radius: var(--border-radius);
	border: 1px solid rgba(115, 88, 189, 0.1);
	transition: all 0.3s ease;
}

.timeline-icon {
	width: 40px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.timeline-icon i {
	font-size: 32px;
}

.timeline-info h3 {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0 0 10px 0;
}

.timeline-info p {
	font-family: var(--font-montserrat);
	font-size: 15px;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.company-mission {
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border-radius: 8px;
	padding: 60px 40px;
	border: 1px solid rgba(115, 88, 189, 0.1);
}

.mission-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.mission-item {
	text-align: center;
	padding: 30px 20px;
}

.mission-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.mission-icon i {
	font-size: 40px;
}

.mission-text h3 {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0 0 12px 0;
}

.mission-text p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.section-cta {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	text-align: center;
	padding: 80px 40px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border-radius: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.cta-buttons .btn-glass {
	background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
	border: none;
	color: var(--color-white);
	transition: all 0.3s ease;
}

.cta-buttons .btn-glass:hover {
	background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(115, 88, 189, 0.3);
}

.section-solutions {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.solution-card {
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.solution-card:hover {
	border-color: rgba(115, 88, 189, 0.3);
}

.solution-icon {
	width: auto;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.solution-icon i {
	font-size: 56px;
}

.solution-title {
	font-family: var(--font-montserrat);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.solution-description {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin-bottom: 24px;
}

.solution-benefits {
	text-align: left;
}

.benefit-point {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.benefit-point i {
	font-size: 18px;
	color: var(--color-purple);
	flex-shrink: 0;
}

.benefit-point span {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
}

.section-use-cases {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.use-cases-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.use-case-item {
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: var(--border-radius);
	padding: 24px;
	background: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.use-case-item:hover {
	border-color: rgba(115, 88, 189, 0.3);
}

.use-case-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.use-case-icon i {
	font-size: 28px;
}

.use-case-title {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
}

.use-case-description p {
	font-family: var(--font-montserrat);
	font-size: 13px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.use-case-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(115, 88, 189, 0.1);
}

.use-case-features span {
	font-family: var(--font-montserrat);
	font-size: 11px;
	font-weight: 600;
	color: var(--color-text);
	display: flex;
	align-items: center;
	gap: 6px;
}

.use-case-features span i {
	font-size: 14px;
	color: var(--color-green);
}

.section-results {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.result-card {
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: var(--border-radius);
	padding: 40px 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.result-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.result-icon i {
	font-size: 40px;
}

.result-value {
	font-family: var(--font-montserrat);
	font-size: 52px;
	font-weight: 800;
	color: var(--color-purple);
	margin-bottom: 12px;
}

.result-label {
	font-family: var(--font-montserrat);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-purple);
	text-transform: uppercase;
	margin-bottom: 26px;
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.result-description {
	font-family: var(--font-montserrat);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.5;
}

.section-implementation {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.implementation-steps {
	display: grid;
	gap: 40px;
}

.step-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 40px;
	align-items: center;
}

.step-number {
	width: 40px;
	height: 40px;
	font-family: var(--font-montserrat);
	font-size: 32px;
	font-weight: 800;
	color: var(--color-purple);
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.1), rgba(255, 130, 188, 0.1));
	border-radius: 50%;
	border: 2px solid rgba(115, 88, 189, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-content {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 26px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 243, 248, 0.2));
	border-radius: var(--border-radius);
	border: 1px solid rgba(115, 88, 189, 0.1);
	transition: all 0.3s ease;
}

.step-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-icon i {
	font-size: 32px;
}

.step-info h3 {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0 0 12px 0;
}

.step-info p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.section-faq-categories {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.faq-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.faq-category-card {
	/* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.9)); */
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
}

.faq-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 3px 6px rgba(115, 88, 189, 0.2);
	border-color: rgba(115, 88, 189, 0.3);
}

.category-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.category-icon i {
	font-size: 40px;
}

.category-title {
	width: 100%;
	height: 40px;
	text-align: center;
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-title i {
	font-size: 24px;
	margin-right: 6px;
}

.category-count {
	width: 100%;
	text-align: center;
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text);
}

.section-faq-content {
	width: 100%;
	max-width: 1000px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.faq-section {
	margin-bottom: 60px;
}

.faq-section-title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(115, 88, 189, 0.1);
}

.faq-section-title i {
	font-size: 32px;
}

.faq-section-title h2 {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0;
}

.faq-item {
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: var(--border-radius);
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 3px 6px rgba(115, 88, 189, 0.15);
	border-color: rgba(115, 88, 189, 0.2);
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	transition: all 0.3s ease;
}

/*
.faq-question:hover {
	background-color: rgba(115, 88, 189, 0.05);
}
*/

.faq-question i:first-child {
	font-size: 24px;
	color: var(--color-purple);
	flex-shrink: 0;
}

.faq-question span {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	flex: 1;
}

.faq-toggle {
	font-size: 24px !important;
	color: var(--color-purple) !important;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 24px 0 64px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 24px;
}

.faq-answer p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.faq-answer strong {
	color: var(--color-purple);
	font-weight: 600;
}

.section-faq-stats {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.faq-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.stat-card {
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border: 1px solid rgba(115, 88, 189, 0.1);
	border-radius: var(--border-radius);
	padding: 40px 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(115, 88, 189, 0.15);
}

.stat-icon {
	width: auto;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.stat-icon i {
	font-size: 40px;
}

.stat-number {
	font-family: var(--font-montserrat);
	font-size: 42px;
	font-weight: 800;
	color: var(--color-purple);
	margin-bottom: 12px;
}

.stat-label {
	font-family: var(--font-montserrat);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-text);
	text-transform: uppercase;
}

.section-contact-faq {
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	text-align: center;
	padding: 60px 40px;
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.05), rgba(255, 130, 188, 0.05));
	border-radius: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.faq-contact-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 40px 0;
}

.contact-option {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 243, 248, 0.8));
	border-radius: var(--border-radius);
	border: 1px solid rgba(115, 88, 189, 0.1);
	transition: all 0.3s ease;
}

.contact-option:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(115, 88, 189, 0.15);
}

.contact-option-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-option-icon i {
	font-size: 32px;
}

.contact-option-info h3 {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	margin: 0 0 4px 0;
}

.contact-option-info p {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	margin: 0;
}

/* Funcionalidades interativas da FAQ */
.faq-search-container {
	border: 2px solid rgba(115, 88, 189, 0.1);
	border-radius: var(--border-radius);
	padding: 30px;
	margin: 40px 0;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.search-icon {
	position: absolute;
	left: 16px;
	font-size: 24px;
	color: var(--color-purple);
	z-index: 2;
}

#faq-search {
	width: 100%;
	padding: 16px 20px 16px 56px;
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	background-color: var(--color-white);
	border: 1px solid rgba(115, 88, 189, 0.2);
	border-radius: var(--border-radius);
	box-sizing: border-box;
	transition: all 0.3s ease;
}

#faq-search:focus {
	outline: none;
	border-color: var(--color-purple);
	box-shadow: 0 0 0 1px rgba(115, 88, 189, 0.1);
}

.clear-search {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.clear-search:hover {
	background-color: rgba(115, 88, 189, 0.1);
}

.clear-search i {
	font-size: 20px;
	color: var(--color-purple);
}

.search-results-count {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-purple);
	text-align: center;
	display: none;
}

/* Estados ativos das categorias */
.faq-category-card.active {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.9));
	transform: translateY(-5px);
	box-shadow: 0 3px 6px rgba(115, 88, 189, 0.2);
}

.faq-category-card.active .category-icon i {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Highlight de termos de busca */
.faq-question span mark,
.faq-answer p mark {
	background: linear-gradient(135deg, rgba(115, 88, 189, 0.3), rgba(255, 130, 188, 0.3));
	color: var(--color-purple);
	font-weight: 600;
	padding: 2px 4px;
	border-radius: 3px;
}

/* Botão scroll to top */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(115, 88, 189, 0.3);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	z-index: 1000;
}

.scroll-to-top.visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(115, 88, 189, 0.4);
}

/* Animações de carregamento */
.faq-category-card,
.faq-section {
	transition: all 0.5s ease;
}

/* Estados de transição para acordeon */
.faq-answer {
	transition: max-height 0.3s ease, padding 0.3s ease;
	overflow: hidden;
}

.faq-item.active .faq-answer {
	transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Melhorias no hover das perguntas */
/*
.faq-question:hover {
	background-color: rgba(115, 88, 189, 0.08);
}
*/

.faq-item.active .faq-question {
	/* background-color: rgba(115, 88, 189, 0.1); */
	border-bottom: 1px solid rgba(115, 88, 189, 0.2);
}

/* Estados de loading */
.loading {
	opacity: 0.7;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid var(--color-purple);
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#content footer {
	width: 100%;
	height: 415px;
	padding: 20px 20px 0 20px;
	background: linear-gradient(to bottom, #122244, #132347);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content footer .container {
	width: 100%;
	max-width: 1200px;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.2fr;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content footer .container>div:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#content footer ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	list-style: none;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#content footer ul li {
	margin: 12px 0 0;
}

#content footer ul li a {
	font-family: var(--font-nunito);
	color: var(--color-dark-white);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

#content footer ul li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

#content footer .container .footer-itens-column {
	padding: 0 18px 0 28px;
}

#content footer .container .footer-itens-column:last-child {
	padding: 0 0 0 18px;
}

.footer-item-title {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-white);
	margin: 30px 0 12px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer-bottom {
	width: 100%;
	height: 60px;
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.footer-copyright {
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 400;
	color: var(--color-dark-white);
	text-align: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.footer-terms {
	margin-left: 12px;
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 400;
	color: var(--color-dark-white);
	text-align: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.footer-terms a {
	font-family: var(--font-nunito);
	color: var(--color-dark-white);
	font-size: 11px;
	font-weight: 400;
	padding: 4px 12px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.footer-terms a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

.footer-social-icons {
	width: auto;
	height: auto;
	font-size: 26px;
	color: var(--color-white);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin-top: 22px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.footer-description {
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	color: var(--color-white);
	margin-top: 16px;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/*
.logo-name {
	font-family: var(--font-bangers);
	font-size: 52px;
	text-decoration: none;
	color: var(--color-white);
	text-shadow: 2px -2px 0px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
}

.logo-name span {
	font-size: 48px;
}

.logo-name i {
	font-size: 56px;
	vertical-align: -7px;
	color: var(--color-white);
	margin-right: -6px;
	position: relative;
	z-index: 1;
}
*/

/*
.logo-footer {
	margin-top: 60px;
	color: rgba(255, 255, 255, 0.4) !important;
	text-shadow: none !important;
}

.logo-footer i {
	color: rgba(255, 255, 255, 0.4) !important;
	text-shadow: none !important;
}
*/

/*
.logo-name a {
	text-decoration: none;
	color: var(--color-white);
}
*/

.title-pages-mark {
	font-family: var(--font-montserrat);
	font-size: 42px;
	font-weight: 700;
	color: var(--color-purple);
	text-align: center;
	text-transform: uppercase;
	line-height: 62px;
}

.title-pages-mark mark {
	color: var(--color-pink);
	background-color: rgba(115, 88, 189, 0.2);
	padding: 0 8px;
	border-radius: var(--border-radius);
}

.subtitle-pages-mark {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	line-height: 32px;
	color: var(--color-text);
	padding: 20px 80px;
}

.subtitle-pages-mark mark {
	font-family: var(--font-montserrat);
	font-weight: 700;
	color: var(--color-dark-blue);
	background-color: rgba(31, 182, 255, 0.2);
	padding: 0 6px;
	border-radius: 3px;
}

/* ============================================
   PHONE MOCKUP - QR SCANNER REALISTA
   ============================================ */

.phone-mockup-qr {
	width: 320px;
	height: 650px;
	position: relative;
	margin: 0 auto;
}

.phone-body {
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
	border-radius: 40px;
	padding: 12px;
	position: relative;
}

/* Notch */
.phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 28px;
	background: #1a1a1a;
	border-radius: 0 0 20px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	z-index: 10;
}

.notch-speaker {
	width: 50px;
	height: 5px;
	background: rgba(50, 50, 50, 0.8);
	border-radius: 3px;
}

.notch-camera {
	width: 10px;
	height: 10px;
	background: radial-gradient(circle, #1a4d6d 30%, #0a1929 100%);
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tela */
.phone-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

/* Status Bar */
.status-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 20px 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 600;
}

.status-left .time {
	font-family: var(--font-montserrat);
}

.status-right {
	display: flex;
	gap: 5px;
	align-items: center;
}

.status-right i {
	font-size: 14px;
}

/* Header do Scanner */
.scanner-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: white;
}

.scanner-header h3 {
	font-family: var(--font-montserrat);
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.back-button,
.options-button {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.back-button i,
.options-button i {
	color: white;
	font-size: 20px;
}

.back-button:hover,
.options-button:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Área do Scanner */
.scanner-area {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		repeating-linear-gradient(0deg,
			rgba(255, 255, 255, 0.03) 0px,
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px,
			transparent 2px),
		linear-gradient(180deg, rgba(20, 20, 40, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
}

.scanner-overlay {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scanner-frame {
	width: 220px;
	height: 220px;
	position: relative;
	border: 2px solid rgba(74, 222, 128, 0.5);
	border-radius: 8px;
	box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.6);
}

/* Cantos do Frame */
.corner {
	position: absolute;
	width: 30px;
	height: 30px;
	border-color: #4ade80;
	border-style: solid;
}

.corner-tl {
	top: -2px;
	left: -2px;
	border-width: 4px 0 0 4px;
	border-radius: 12px 0 0 0;
}

.corner-tr {
	top: -2px;
	right: -2px;
	border-width: 4px 4px 0 0;
	border-radius: 0 12px 0 0;
}

.corner-bl {
	bottom: -2px;
	left: -2px;
	border-width: 0 0 4px 4px;
	border-radius: 0 0 0 12px;
}

.corner-br {
	bottom: -2px;
	right: -2px;
	border-width: 0 4px 4px 0;
	border-radius: 0 0 12px 0;
}

/* Linha de Scan Animada */
.scan-line {
	position: absolute;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #4ade80, transparent);
	box-shadow: 0 0 10px #4ade80;
	animation: scanAnimation 2s ease-in-out infinite;
}

@keyframes scanAnimation {

	0%,
	100% {
		top: 0;
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		top: 100%;
		opacity: 0;
	}
}

/* Instrução */
.scanner-instruction {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	text-align: center;
}

.scanner-instruction p {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-montserrat);
	font-size: 13px;
	font-weight: 500;
	margin: 0;
	padding: 0 20px;
}

/* Botões de Ação */
.scanner-actions {
	display: flex;
	justify-content: space-around;
	padding: 20px;
	background: rgba(20, 20, 40, 0.5);
}

.action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
}

.action-btn:hover {
	color: white;
}

.action-btn i {
	font-size: 24px;
}

.action-btn span {
	font-family: var(--font-montserrat);
	font-size: 11px;
	font-weight: 500;
}

/* Botões Físicos */
.phone-button-power {
	position: absolute;
	right: -3px;
	top: 150px;
	width: 3px;
	height: 60px;
	background: linear-gradient(90deg, #333, #1a1a1a);
	border-radius: 0 3px 3px 0;
}

.phone-button-volume {
	position: absolute;
	left: -3px;
	width: 3px;
	background: linear-gradient(90deg, #1a1a1a, #333);
	border-radius: 3px 0 0 3px;
}

.volume-up {
	top: 120px;
	height: 50px;
}

.volume-down {
	top: 180px;
	height: 50px;
}

.i-arrow-select-home {
	width: 26px;
	height: 20px;
	margin-top: -34px;
	margin-right: 15px;
	float: right;
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
	position: relative;
	z-index: 2;
}

.i-arrow-select-contact {
	width: 26px;
	height: 20px;
	margin-top: -29px;
	color: rgba(0, 0, 0, 0.5);
	font-size: 18px;
	position: relative;
	z-index: 2;
	left: 308px;
}

.custom-select-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.custom-select-input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 3px;
	cursor: pointer;
}

.custom-select-dropdown {
	position: fixed;
	background: white;
	border-top: none;
	max-height: 200px;
	overflow-y: auto;
	z-index: 9999;
	display: none;
	-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08)
}

.custom-select-dropdown.open-upward {
	border-top: 1px solid #e6e6e6;
	border-bottom: none;
}

.custom-select-item {
	display: block;
	position: relative;
	padding: 8px 12px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.custom-select-item i {
	margin-right: 8px;
	font-size: 20px;
	vertical-align: middle;
}

.custom-select-item:hover .custom-select-item-text {
	color: var(--color-dark-blue);
	font-weight: 600;
	background-color: #FEFEFE;
}

.custom-select-item:hover .custom-select-item-type {
	color: var(--color-dark-blue);
}

.custom-select-item:hover i {
	color: var(--color-blue) !important;
}

.custom-select-item.selected .custom-select-item-text {
	color: var(--color-purple) !important;
	font-weight: 600;
	background-color: #FEFEFE;
}

.custom-select-item.selected i {
	color: var(--color-pink) !important;
}

.custom-select-wrapper.disabled {
	opacity: 0.8;
	cursor: not-allowed;
	pointer-events: none;
}

.custom-select-input.disabled,
.custom-select-input:disabled {
	background-color: #FAFAFA;
	cursor: not-allowed;
	border-color: var(--color-cyan) !important;
}

.custom-select-item-content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}

.custom-select-item-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 28px;
}

.custom-select-item-text {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text);
}

.custom-select-item-type {
	font-family: var(--font-montserrat);
	margin-top: -2px;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
}

/* ============================
   Header Navigation - Defaults
   ============================ */

/* Desktop padrão - esconde mobile login, mostra desktop login */
.nav-menu .mobile-login {
	display: none;
}

.desktop-login {
	display: block;
}