/* ===========================================================
// Fonts
=========================================================== */
@font-face {
	font-family: 'Jost';
	src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('../fonts/jost-v20-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('../fonts/jost-v20-latin-700.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}
/* ===========================================================
// CSS Variables
=========================================================== */
:root {
	--primary: #1268df;
	--primary-hover: #064295;
	--primary-light: rgba(18, 104, 223, 0.12);
	--bg: #f1f3f5;
	--bg-2: #E9ECEF;
	--bg-card: #FFFFFF;
	--bg-card-hover: #F8F9FA;
	--border: rgba(0, 0, 0, 0.08);
	--border-strong: rgba(0, 0, 0, 0.14);
	--text: #1A1A2E;
	--text-muted: #5A5F6B;
	--text-subtle: #8B919C;
	--radius: 10px;
	--radius-lg: 16px;
	--font: 'Jost', sans-serif;
	--container: 1200px;
	--g2: repeat(2, minmax(0, 1fr));
	--g3: repeat(3, minmax(0, 1fr));
	--g4: repeat(4, minmax(0, 1fr));
	--g5: repeat(5, minmax(0, 1fr));
	--g6: repeat(6, minmax(0, 1fr));
}
/* ===========================================================
// Reset & Base
=========================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
	text-decoration: none;
}
ul, ol {
	list-style: none;
}
img, svg {
	display: block;
	max-width: 100%;
}
button {
	cursor: pointer;
	font-family: var(--font);
	border: none;
	background: none;
}
/* ===========================================================
// Container
=========================================================== */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
/* ===========================================================
// Buttons
=========================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
	/*white-space: nowrap;*/
}
.btn:active {
	transform: scale(0.97);
}
.btn-primary {
	background: var(--primary);
	color: #fff;
}
.btn-primary:hover {
	background: var(--primary-hover);
}
.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}
.btn-ghost {
	background: transparent;
	color: var(--text-muted);
	padding: 12px 16px;
}
.btn-ghost:hover {
	color: var(--text);
}
.btn-lg {
	padding: 14px 30px;
	font-size: 16px;
}
/* ===========================================================
// Section
=========================================================== */
.section {
	padding: 100px 0;
	position: relative;
}
.section-sm {
	padding: 70px 0;
}
.section-title {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 600;
	line-height: 1.15;
	margin-bottom: 16px;
}
.section-subtitle {
	font-size: 17px;
	color: var(--text-muted);
	max-width: 560px;
	line-height: 1.7;
}
.section-header {
	margin-bottom: 60px;
}
.section-header.centered {
	text-align: center;
}
.section-header.centered .section-subtitle {
	margin: 0 auto;
}
section img{max-width: 100%;height: auto}
/* ===========================================================
// Topbar
=========================================================== */
.topbar {
	background: var(--primary);
	padding: 10px 24px;
	text-align: center;
	font-size: 13.5px;
	font-weight: 500;
}
.topbar a {
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: 0.95;
	transition: opacity 0.2s;
}
.topbar a:hover {
	opacity: 1;
}
.topbar-close {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}
.topbar {
	position: relative;
}
/* ===========================================================
// Navbar
=========================================================== */
.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 249, 250, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
	background: rgba(248, 249, 250, 0.98);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	gap: 32px;
}
.navbar-logo {
	flex-shrink: 0;
}
.navbar-logo img {
	height: 34px;
	width: auto;
}
.navbar-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 1;
}
.navbar-nav a {
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.2s, background 0.2s;
}
.navbar-nav a:hover,
.navbar-nav a.active {
	color: var(--text);
	background: rgba(0, 0, 0, 0.05);
}
.navbar-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	cursor: pointer;
}
.navbar-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}
.navbar-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.open span:nth-child(2) {
	opacity: 0;
}
.navbar-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
/* ===========================================================
// Hero
=========================================================== */
.hero {
	display: flex;
	align-items: center;
	background: var(--bg);
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}
/*
.hero::before {
	content: '';
	position: absolute;
	top: 200px;
	left: -100px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(18, 104, 223, 0.15) 0%, transparent 65%);
	pointer-events: none;
}
.hero::after {
	content: '';
	position: absolute;
	top: -200px;
	right: -100px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(18, 104, 223, 0.15) 0%, transparent 65%);
	pointer-events: none;
}*/
.hero-inner {
	position: relative;
	z-index: 2;
}
.hero-inner:before {
	content: "";
	position: absolute;
	left: -5%;
	right: -5%;
	top: 5%;
	bottom: -25%;
	border-radius: 700px;
	background: #fff;
	filter: blur(100px);
	z-index: -1;
}
.hero-badge, .section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 5px;
	/*border: 1px solid rgba(18, 104, 223, 0.3);
	background: rgba(18, 104, 223, 0.08);*/
}
.hero-title {
	font-size: clamp(30px, 5vw, 46px);
	font-weight: 600;
	line-height: 1;
	margin-bottom: 22px;
	text-wrap-style: balance;
}
.hero-title span {
	color: var(--primary);
}
.hero-desc {
	font-size: 17px;
	color: var(--text-muted);
	line-height: 1.75;
	margin-bottom: 36px;
}
.hero-img {
	position: relative;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
.hero-social-proof {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.hero-stat {
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-stat-icon {
	width: 36px;
	height: 36px;
	background: var(--primary-light);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
}
.hero-stat-text strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
}
.hero-stat-text span {
	font-size: 12px;
	color: var(--text-muted);
}
.hero-divider {
	width: 1px;
	height: 32px;
	background: var(--border-strong);
}
.hero-visual {
	position: relative;
}
.hero-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.hero-card-header {
	background: var(--bg-2);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid var(--border);
}
.hero-card-dots {
	display: flex;
	gap: 6px;
}
.hero-card-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.hero-card-dot:nth-child(1) {
	background: #FF5F57;
}
.hero-card-dot:nth-child(2) {
	background: #FFBD2E;
}
.hero-card-dot:nth-child(3) {
	background: #28C840;
}
.hero-card-title {
	font-size: 13px;
	color: var(--text-muted);
	margin-left: 6px;
}
.hero-card-body {
	padding: 24px;
}
.hero-doc-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hero-doc-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--bg-2);
	border-radius: 8px;
	border: 1px solid var(--border);
}
.hero-doc-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hero-doc-icon.pdf {
	background: rgba(220, 38, 38, 0.15);
	color: #f87171;
}
.hero-doc-icon.xls {
	background: rgba(22, 163, 74, 0.15);
	color: #4ade80;
}
.hero-doc-icon.zip {
	background: rgba(217, 119, 6, 0.15);
	color: #fbbf24;
}
.hero-doc-info {
	flex: 1;
	min-width: 0;
}
.hero-doc-name {
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hero-doc-meta {
	font-size: 12px;
	color: var(--text-muted);
}
.hero-doc-badge {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 999px;
	flex-shrink: 0;
}
.hero-doc-badge.new {
	background: rgba(18, 104, 223, 0.15);
	color: #60a5fa;
}
.hero-doc-badge.sent {
	background: rgba(22, 163, 74, 0.15);
	color: #4ade80;
}
.hero-doc-badge.pending {
	background: rgba(217, 119, 6, 0.15);
	color: #fbbf24;
}
.hero-floating {
	position: absolute;
	background: var(--bg-card);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius);
	padding: 12px 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.hero-floating-1 {
	bottom: -20px;
	left: -24px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-floating-2 {
	top: -18px;
	right: -20px;
}
.hero-floating-avatars {
	display: flex;
}
.hero-floating-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--bg-card);
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	margin-left: -8px;
	color: #fff;
}
.hero-floating-avatar:first-child {
	margin-left: 0;
}
.hero-floating-text strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
}
.hero-floating-text span {
	font-size: 11px;
	color: var(--text-muted);
}
.hero-rating {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hero-rating-stars {
	display: flex;
	gap: 2px;
	color: #FBBF24;
	font-size: 14px;
}
.hero-rating-text {
	font-size: 13px;
	font-weight: 600;
}
.hero-rating-sub {
	font-size: 11px;
	color: var(--text-muted);
}
/* ===========================================================
// Logos Strip
=========================================================== */
.logos {
	padding: 48px 0;
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}
.logos-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-subtle);
	text-align: center;
	margin-bottom: 28px;
}
.logos-slider {
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 100%;
	position: relative;
}
.logos-slider::before,
.logos-slider::after {
	content: '';
	position: absolute;
	top: 0;
	width: 160px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}
.logos-slider::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-2), transparent);
}
.logos-slider::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-2), transparent);
}
.logos-track {
	display: flex;
	align-items: center;
	gap: 48px;
	animation: scroll 40s linear infinite;
}
.logos-item {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-subtle);
	letter-spacing: -0.01em;
	transition: color 0.2s;
	user-select: none;
	cursor: unset;
	white-space: nowrap;
	flex-shrink: 0;
}
.logos-item:hover {
	color: var(--text-muted);
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
/* ===========================================================
// Features
=========================================================== */
section.features:before,
section.pricing:before {
	content: '';
	position: absolute;
	top: 200px;
	right: 5%;
	width: 90%;
	height: 700px;
	background: radial-gradient(circle, var(--gray) 0%, transparent 65%);
	pointer-events: none;
}
.features {
	background: var(--bg);
	overflow: hidden;
}
.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.feature-card:hover {
	border-color: var(--border-strong);
	background: var(--bg-card-hover);
	transform: translateY(-3px);
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	margin-bottom: 18px;
}
.feature-title {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 10px;
}
.feature-desc {
	font-size: 14.5px;
	color: var(--text-muted);
	line-height: 1.65;
}
/* ===========================================================
// Organizacao
=========================================================== */
section#organizacao .benefits-list {
	margin: 0;
}
section#organizacao .section-header {
	margin: 0 0 30px;
}
/* ===========================================================
// Benefits
=========================================================== */
.benefits {
	background: var(--bg-2);
}
.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 28px;
}
.benefits-item {
	display: flex;
	gap: 14px;
}
.benefits-item-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 2px;
}
.benefits-item-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}
.benefits-item-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}
.benefits-visual {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.stat-box {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
}
.stat-number {
	font-size: 32px;
	font-weight: 600;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 6px;
}
.stat-label {
	font-size: 13px;
	color: var(--text-muted);
}
/* ===========================================================
// Icon system (SVG sprite)
=========================================================== */
.icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}
.icon-14 {
	width: 14px;
	height: 14px;
}
.icon-16 {
	width: 16px;
	height: 16px;
}
.icon-18 {
	width: 18px;
	height: 18px;
}
.icon-22 {
	width: 22px;
	height: 22px;
}
.icon-28 {
	width: 28px;
	height: 28px;
}
.icon-32 {
	width: 32px;
	height: 32px;
}
.icon-48 {
	width: 48px;
	height: 48px;
}
.icon-thin {
	stroke-width: 1.5;
}
.icon-thick {
	stroke-width: 2.5;
}
.icon-success {
	color: #4ade80;
}
/* ===========================================================
// Doc Organization Mock
=========================================================== */
.doc-org-mock {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	font-size: 13px;
}
.doc-org-filters {
	display: grid;
	grid-template-columns: 1.4fr 1.4fr 1fr 1fr 0.9fr;
	gap: 12px;
	margin-bottom: 20px;
}
.doc-org-field label {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 6px;
	font-weight: 500;
}
.doc-org-select {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	background: var(--bg-card);
	border: 1px solid var(--border-strong);
	border-radius: 8px;
	padding: 8px 8px;
	font-size: 12.5px;
	color: var(--text);
	font-weight: 500;
	white-space: nowrap;
	font-size: 12px;
}
.doc-org-select svg {
	color: var(--text-muted);
	flex-shrink: 0;
}
.doc-org-select-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}
.doc-org-select-group .doc-org-select {
	padding: 8px;
}
.doc-org-table {
	border-top: 1px solid var(--border);
}
.doc-org-thead,
.doc-org-row {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
	align-items: center;
	gap: 12px;
	padding: 14px 4px;
}
.doc-org-thead {
	background: var(--bg-2);
	border-radius: 6px;
	padding: 12px;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}
.doc-org-row {
	border-bottom: 1px solid var(--border);
	padding: 14px 12px;
}
.doc-org-row:last-child {
	border-bottom: none;
}
.doc-org-cat {
	font-weight: 500;
	color: var(--text);
}
.doc-org-muted {
	color: var(--text-muted);
}
.doc-org-size {
	color: var(--primary);
	font-weight: 500;
}
.doc-org-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.4;
}
.doc-org-badge.pending {
	background: #FEF3C7;
	color: #92400E;
}
.doc-org-badge.origin-cont {
	background: #D1FAE5;
	color: #065F46;
}
.doc-org-badge.origin-cli {
	background: #DBEAFE;
	color: #1E40AF;
}
@media (max-width: 768px) {
	.doc-org-mock {
		padding: 16px;
		overflow-x: auto;
	}
	.doc-org-filters {
		grid-template-columns: 1fr 1fr;
	}
	.doc-org-thead,
	.doc-org-row {
		grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr 1.1fr;
		font-size: 12px;
		gap: 8px;
	}
}
/* ===========================================================
// Pricing
=========================================================== */
.pricing {
	background: var(--bg);
}
.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transition: border-color 0.25s, transform 0.25s;
	position: relative;
}
.pricing-card:hover {
	transform: translateY(-4px);
}
.pricing-card.popular {
	border-color: var(--primary);
}
.pricing-popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 999px;
	white-space: nowrap;
}
.pricing-plan {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 4px;
}
.pricing-price {
	display: flex;
	align-items: flex-end;
	gap: 4px;
}
.pricing-currency {
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 4px;
	color: var(--text-muted);
}
.pricing-amount {
	font-size: 46px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
}
.pricing-period {
	font-size: 14px;
	color: var(--text-muted);
	padding-bottom: 8px;
}
.pricing-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}
.pricing-divider {
	height: 1px;
	background: var(--border);
}
.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
}
.pricing-feature svg {
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--primary);
}
.pricing-feature.disabled {
	color: var(--text-subtle);
}
.pricing-feature.disabled svg {
	color: var(--text-subtle);
}
/* ===========================================================
// CTA Banner
=========================================================== */
.cta-banner {
	background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary), var(--primary-hover) 100%);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
	color: #fff;
}
/* .cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-45deg,
			rgba(255, 255, 255, 0.03) 0px,
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px,
			transparent 20px);
	pointer-events: none;
} */
.cta-banner-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.cta-banner-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 16px;
}
.cta-banner-desc {
	font-size: 17px;
	opacity: 0.85;
	max-width: 500px;
	margin: 0 auto 36px;
	line-height: 1.65;
}
.cta-banner .btn-outline {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.cta-banner .btn-outline:hover {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.1);
}
.btn-white {
	background: #fff;
	color: var(--primary);
	font-weight: 600;
}
.btn-white:hover {
	background: rgba(255, 255, 255, 0.92);
}
.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
/* ===========================================================
// Footer
=========================================================== */
.footer {
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	padding: 72px 0 40px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 64px;
}
.footer-brand-desc {
	font-size: 14.5px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: 16px;
	margin-bottom: 24px;
	max-width: 280px;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.footer-social-link {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
	color: var(--text);
	border-color: var(--border-strong);
	background: var(--bg-card-hover);
}
.footer-col-title {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-subtle);
	margin-bottom: 18px;
}
.footer-col-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-col-links a {
	font-size: 14.5px;
	color: var(--text-muted);
	transition: color 0.2s;
}
.footer-col-links a:hover {
	color: var(--text);
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 28px;
	border-top: 1px solid var(--border);
	font-size: 13.5px;
	color: var(--text-subtle);
	gap: 16px;
	flex-wrap: wrap;
}
.footer-bottom-left {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.footer-company {
	font-size: 12px;
	color: var(--text-subtle);
}
.footer-bottom-links {
	display: flex;
	gap: 20px;
}
.footer-bottom-links a {
	color: var(--text-subtle);
	transition: color 0.2s;
}
.footer-bottom-links a:hover {
	color: var(--text-muted);
}
/* ===========================================================
// Testimonials
=========================================================== */
.testimonials {
	background: var(--bg-2);
}
.testi-highlights {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 32px;
}
.testi-highlight-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.testi-highlight-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 2px;
}
.testi-highlight-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 3px;
}
.testi-highlight-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
}
.testi-swiper-wrap {
	position: relative;
	min-width: 0;
}
.testi-swiper {
	overflow: hidden;
}
/* Before Swiper JS initialises, show only first slide */
.testi-swiper:not(.swiper-initialized) .swiper-wrapper {
	display: block;
}
.testi-swiper:not(.swiper-initialized) .swiper-slide {
	display: none;
}
.testi-swiper:not(.swiper-initialized) .swiper-slide:first-child {
	display: block;
}
.testi-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
	box-sizing: border-box;
}
.testi-quote {
	font-size: 64px;
	line-height: 0.6;
	color: var(--primary);
	font-weight: 700;
	opacity: 0.25;
	user-select: none;
}
.testi-text {
	font-size: 15.5px;
	color: var(--text);
	line-height: 1.75;
	flex: 1;
}
.testi-divider {
	height: 1px;
	background: var(--border);
}
.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.testi-name {
	font-size: 14px;
	font-weight: 600;
}
.testi-role {
	font-size: 12.5px;
	color: var(--text-muted);
}
.testi-stars {
	margin-left: auto;
	color: #FBBF24;
	font-size: 14px;
	letter-spacing: 1px;
	flex-shrink: 0;
}
.testi-nav {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	justify-content: flex-end;
}
.testi-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid var(--border-strong);
	background: var(--bg-card);
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.testi-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--primary-light);
}
/* Swiper overrides */
.testi-pagination {
	position: static !important;
	margin-top: 16px;
	text-align: left;
}
.testi-pagination .swiper-pagination-bullet {
	background: var(--border-strong);
	opacity: 1;
	transition: background 0.2s, width 0.2s;
}
.testi-pagination .swiper-pagination-bullet-active {
	background: var(--primary);
	width: 20px;
	border-radius: 4px;
}
@media (max-width: 991px) {
	.testi-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
/* ===========================================================
// Upload Demo Section
=========================================================== */
.upload-demo {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
/* --- Upload zone (static by default, pulses once when active) --- */
.upload-zone {
	border: 2px dashed var(--border-strong);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	background: var(--bg-2);
	transition: border-color 0.6s, background 0.6s;
}
.upload-demo.upload-active .upload-zone {
	animation: upload-zone-pulse 1.2s ease forwards;
}
@keyframes upload-zone-pulse {
	0% {
		border-color: var(--border-strong);
		background: var(--bg-2);
	}
	50% {
		border-color: var(--primary);
		background: var(--primary-light);
	}
	100% {
		border-color: var(--border-strong);
		background: var(--bg-2);
	}
}
.upload-cloud {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.upload-cloud-icon {
	color: var(--primary);
}
.upload-demo.upload-active .upload-cloud-icon {
	animation: upload-bounce 0.6s ease 0.1s both;
}
@keyframes upload-bounce {
	0% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-8px);
	}
	70% {
		transform: translateY(-3px);
	}
	100% {
		transform: translateY(0);
	}
}
.upload-hint {
	font-size: 13.5px;
	color: var(--text-muted);
	margin-bottom: 4px;
}
.upload-link {
	color: var(--primary);
	font-weight: 500;
}
.upload-formats {
	font-size: 12px;
	color: var(--text-subtle);
}
/* --- File list --- */
.upload-files {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.upload-file-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 10px 14px;
	opacity: 0;
	transform: translateX(10px);
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(1) {
	animation: upload-item-in 0.4s ease 0.2s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(2) {
	animation: upload-item-in 0.4s ease 0.8s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(3) {
	animation: upload-item-in 0.4s ease 1.4s forwards;
}
@keyframes upload-item-in {
	from {
		opacity: 0;
		transform: translateX(10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.upload-file-icon {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.upload-file-icon.pdf {
	background: rgba(220, 38, 38, 0.12);
	color: #f87171;
}
.upload-file-icon.xls {
	background: rgba(22, 163, 74, 0.12);
	color: #4ade80;
}
.upload-file-icon.zip {
	background: rgba(217, 119, 6, 0.12);
	color: #fbbf24;
}
.upload-file-info {
	flex: 1;
	min-width: 0;
}
.upload-file-name {
	font-size: 12.5px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 5px;
}
.upload-file-bar {
	height: 4px;
	background: var(--border);
	border-radius: 99px;
	overflow: hidden;
}
.upload-file-progress {
	height: 100%;
	width: 0;
	background: var(--primary);
	border-radius: 99px;
}
/* progress bars fill once, each after its item appears */
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(1) .upload-file-progress {
	animation: upload-fill-full 0.7s ease 0.65s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(2) .upload-file-progress {
	animation: upload-fill-full 0.7s ease 1.25s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(3) .upload-file-progress {
	animation: upload-fill-full 0.7s ease 1.85s forwards;
}
@keyframes upload-fill-full {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
/* check icons: hidden, pop in after progress fills */
.upload-file-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.15);
	color: #09903a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0;
	transform: scale(0.5);
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(1) .upload-file-check {
	animation: upload-pop 0.3s ease 1.35s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(2) .upload-file-check {
	animation: upload-pop 0.3s ease 1.95s forwards;
}
.upload-demo.upload-active .upload-files .upload-file-item:nth-child(3) .upload-file-check {
	animation: upload-pop 0.3s ease 2.55s forwards;
}
@keyframes upload-pop {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
/* toast */
.upload-toast {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-card);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius);
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	opacity: 0;
	transform: translateY(6px);
}
.upload-demo.upload-active .upload-toast {
	animation: upload-toast-in 0.5s ease 2.3s forwards;
}
@keyframes upload-toast-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.upload-toast-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}
.upload-demo.upload-active .upload-toast-dot {
	animation: upload-dot-ping 1.8s ease-out 2.8s infinite;
}
@keyframes upload-dot-ping {
	0% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
	}
	70% {
		box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
	}
}
/* ===========================================================
// Contact Section
=========================================================== */
.contact-section {
	background: var(--bg);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
/* --- Left info column --- */
.contact-info .section-title {
	margin-top: 12px;
}
.contact-info .section-subtitle {
	margin-top: 8px;
	margin-bottom: 36px;
}
.contact-benefits {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 36px;
}
.contact-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.contact-benefit-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: var(--radius);
	background: var(--primary-light);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.contact-benefit-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.contact-benefit-text strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
}
.contact-benefit-text span {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.5;
}
.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact-channel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.2s;
}
.contact-channel:hover {
	color: var(--primary);
}
/* --- Right form card --- */
.contact-form-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-form-header {
	margin-bottom: 28px;
}
.contact-form-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 6px;
}
.contact-form-subtitle {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}
/* --- Form elements --- */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.form-group label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--text);
}
.form-required {
	color: var(--primary);
}
.form-optional {
	font-weight: 400;
	color: var(--text-subtle);
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px 14px;
	font-family: var(--font);
	font-size: 14.5px;
	color: var(--text);
	background: var(--bg);
	border: 1.5px solid var(--border-strong);
	border-radius: var(--radius);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
	-webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-subtle);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
	border-color: #e53e3e;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}
.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5F6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
	cursor: pointer;
}
.form-group textarea {
	resize: vertical;
	min-height: 88px;
}
.contact-submit {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
	position: relative;
}
.contact-submit-spinner {
	display: none;
	animation: spin 0.8s linear infinite;
}
.contact-submit.loading .contact-submit-text {
	opacity: 0.6;
}
.contact-submit.loading .contact-submit-icon {
	display: none;
}
.contact-submit.loading .contact-submit-spinner {
	display: block;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
/* --- Success state --- */
.contact-success {
	text-align: center;
	padding: 48px 24px;
}
.contact-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(74, 222, 128, 0.15);
	color: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.contact-success h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text);
}
.contact-success p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.65;
	max-width: 340px;
	margin: 0 auto;
}
/* --- Responsive --- */
@media (max-width: 991px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
@media (max-width: 767px) {
	.contact-form-card {
		padding: 28px 20px;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
/* ===========================================================
// Fade-in Animation
=========================================================== */
.fade-in {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: none;
}
/* ===========================================================
// Responsive
=========================================================== */
@media (min-width: 1200px) {
	.hero-img img {
		width: 112%;
		max-width: 112%;
		float: left;
		filter: contrast(1.05);
	}
}
@media (max-width: 991px) {
	.navbar-nav {
		display: none;
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 12px 16px 16px;
	}
	.navbar-nav.open {
		display: flex;
	}
	.navbar-nav a {
		padding: 11px 14px;
	}
	.navbar-toggle {
		display: flex;
	}
	.navbar {
		position: sticky;
	}
	.navbar-toggle span {
		background: var(--text);
	}
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.hero-visual {
		margin: 0 auto;
		width: 100%;
	}
	.hero-floating-1 {
		left: 0;
	}
	.hero-floating-2 {
		right: 0;
	}
	.benefits-block {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.benefits-block.reverse {
		direction: ltr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.footer-grid> :first-child {
		grid-column: 1 / -1;
	}
}
@media (max-width: 767px) {
	.navbar-actions .btn {
		font-weight: 400;
		padding: 10px 10px;
		font-size: 14px;
	}
	.hero-title hr {
		display: none;
	}
	.navbar-actions .btn-ghost {
		display: none;
	}
	.hero-social-proof {
		column-gap: 15px;
	}
	.feature-title {
		font-size: 16px;
		line-height: 1.25;
	}
	.feature-card .feature-desc {
		font-size: 12px;
		line-height: 1.2;
		column-fill: balance;
	}
	.section {
		padding: 70px 0;
	}
	.section-header {
		margin-bottom: 40px;
	}
	.hero {
		padding: 60px 0;
		min-height: unset;
	}
	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}
	section#organizacao img,
	.hero-img img {
		margin: 0 auto;
	}
	.logos-grid {
		gap: 28px;
	}
	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.stat-number{font-size: 26px;}
}
@media (max-width: 480px) {
	.hero{padding-top: 20px;}
	.feature-card {
		padding: 28px 14px
	}
}