/* ============================================================
   LOGIX BR — Site Institucional
   Identidade visual: Inter, #F8285A, #1a202c, #252F4A
   ============================================================ */

/* --- VARIÁVEIS --- */
:root {
	--primary: #f8285a;
	--primary-dark: #d41846;
	--primary-soft: rgba(248, 40, 90, 0.1);
	--dark: #1a202c;
	--navy: #252f4a;
	--gray: #718096;
	--gray-light: #e2e8f0;
	--light: #f8fafc;
	--white: #ffffff;
	--radius: 12px;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
	--transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET / BASE --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--navy);
	background: var(--white);
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
ul {
	padding-left: 0.55rem !important;
}
section {
	position: relative;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--dark);
}
h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
}
h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h3 {
	font-size: 1.25rem;
}
p {
	color: var(--gray);
}
.text-primary {
	color: var(--primary) !important;
}
.text-dark {
	color: var(--dark) !important;
}
.text-white {
	color: var(--white) !important;
}
.fw-500 {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}
.fw-700 {
	font-weight: 700;
}
.lead {
	font-size: 1.125rem;
}
.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.75rem;
}
.section-title {
	margin-bottom: 0.75rem;
}
.section-desc {
	max-width: 560px;
	margin: 0 auto 2.5rem;
}

/* --- BUTTONS --- */
.btn-logix {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
}
.btn-logix-primary {
	background: var(--primary);
	color: var(--white);
}
.btn-logix-primary:hover {
	background: var(--primary-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(248, 40, 90, 0.35);
}
.btn-logix-outline {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--white);
	background: transparent;
}
.btn-logix-outline:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}
.btn-logix-dark {
	background: var(--dark);
	color: var(--white);
}
.btn-logix-dark:hover {
	background: var(--navy);
	color: var(--white);
	transform: translateY(-2px);
}
.btn-logix-ghost {
	border-color: var(--gray-light);
	color: var(--navy);
}
.btn-logix-ghost:hover {
	border-color: var(--primary);
	color: var(--primary);
}

/* --- BADGE --- */
.badge-logix {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--primary);
}

/* --- NAVBAR --- */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--dark);
	padding: 0 1rem;
	transition: box-shadow 0.3s;
}
#navbar.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.navbar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 1rem;
}
.nav-logo img {
	height: 26px;
	width: auto;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.nav-links a {
	padding: 0.45rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	border-radius: 6px;
	transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.nav-cta .btn-logix {
	padding: 0.55rem 1.25rem;
	font-size: 0.84rem;
}

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--transition);
}
.nav-mobile {
	display: none;
	background: var(--dark);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1rem;
}
.nav-mobile.open {
	display: block;
}
.nav-mobile a {
	display: block;
	padding: 0.65rem 0.75rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	border-radius: 6px;
	transition: var(--transition);
}
.nav-mobile a:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}
.nav-mobile .btn-logix {
	margin-top: 0.75rem;
	width: 100%;
	justify-content: center;
}

/* --- HERO --- */
#hero {
	min-height: 100vh;
	background: linear-gradient(135deg, var(--dark) 0%, #0f1523 60%, #1a0a14 100%);
	display: flex;
	align-items: center;
	padding: 100px 1rem 60px;
	overflow: hidden;
}
.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}
.hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
.hero-eyebrow span {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
}
@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(248, 40, 90, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(248, 40, 90, 0);
	}
}
#hero h1 {
	color: var(--white);
	margin-bottom: 1.25rem;
}
#hero h1 span {
	color: var(--primary);
}
#hero p.lead {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 2rem;
	max-width: 480px;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}
.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}
.hero-trust-item i {
	color: var(--primary);
	font-size: 0.9rem;
}
/* Hero right: product cards floating */
.hero-visual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	position: relative;
}
.hero-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 1.25rem;
	transition: var(--transition);
	backdrop-filter: blur(10px);
}
.hero-card:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(248, 40, 90, 0.3);
	transform: translateY(-4px);
}
.hero-card:first-child {
	grid-column: 1 / -1;
}
.hero-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}
.hero-card-icon.red {
	background: rgba(248, 40, 90, 0.15);
	color: var(--primary);
}
.hero-card-icon.blue {
	background: rgba(59, 130, 246, 0.15);
	color: #3b82f6;
}
.hero-card-icon.green {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
}
.hero-card-icon.gold {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
}
.hero-card h4 {
	font-size: 0.92rem;
	color: var(--white);
	margin-bottom: 0.25rem;
}
.hero-card p {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* --- STATS BAR --- */
#stats {
	background: var(--primary);
	padding: 2.5rem 1rem;
}
.stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.stat-item {
	text-align: center;
}
.stat-item .num {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	display: block;
}
.stat-item .label {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.25rem;
}

/* --- SECTION PADDING --- */
.section-pad {
	padding: 96px 1rem;
}
.section-pad-sm {
	padding: 64px 1rem;
}
.container-site {
	max-width: 1200px;
	margin: 0 auto;
}
.text-center {
	text-align: center;
}

/* --- SOLUTIONS --- */
#solucoes {
	background: var(--light);
}
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.solution-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 2rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.solution-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}
.solution-card:hover {
	border-color: transparent;
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.solution-card:hover::after {
	transform: scaleX(1);
}
.solution-card.featured {
	background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
	border-color: transparent;
	color: var(--white);
}
.solution-card.featured::after {
	height: 0;
}
.solution-card.featured h3,
.solution-card.featured .solution-desc {
	color: var(--white);
}
.solution-card.featured p {
	color: rgba(255, 255, 255, 0.65);
}
.solution-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: 6px;
	margin-bottom: 1rem;
}
.tag-red {
	background: var(--primary-soft);
	color: var(--primary);
}
.tag-blue {
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}
.tag-green {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}
.tag-dark {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
}
.solution-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.solution-card h3 {
	margin-bottom: 0.5rem;
}
.solution-desc {
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.solution-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.solution-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.2rem;
	font-size: 0.85rem;
	color: var(--navy);
}
.solution-card.featured .solution-feature {
	color: rgba(255, 255, 255, 0.8);
}
.solution-feature i {
	color: var(--primary);
	font-size: 0.85rem;
	margin-top: 3px;
	flex-shrink: 0;
}
.solution-card.featured .solution-feature i {
	color: #10b981;
}

/* --- HOW IT WORKS --- */
#como-funciona {
	background: var(--white);
}
.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	position: relative;
}
.steps-grid::before {
	content: "";
	position: absolute;
	top: 36px;
	left: calc(16.66% + 36px);
	right: calc(16.66% + 36px);
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary));
	background-size: 8px 2px;
	background-image: repeating-linear-gradient(
		90deg,
		var(--primary) 0,
		var(--primary) 5px,
		transparent 0,
		transparent 50%
	);
	z-index: 0;
}
.step-card {
	background: var(--light);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: var(--transition);
	position: relative;
	z-index: 1;
}
.step-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}
.step-num {
	width: 52px;
	height: 52px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--white);
	margin: 0 auto 1.25rem;
	box-shadow: 0 4px 16px rgba(248, 40, 90, 0.3);
}
.step-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

/* --- FEATURES --- */
#funcionalidades {
	background: var(--dark);
}
#funcionalidades .section-label {
	color: rgba(248, 40, 90, 0.9);
}
#funcionalidades .section-title {
	color: var(--white);
}
#funcionalidades .section-desc {
	color: rgba(255, 255, 255, 0.5);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.feature-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: var(--transition);
}
.feature-card:hover {
	background: rgba(248, 40, 90, 0.08);
	border-color: rgba(248, 40, 90, 0.25);
	transform: translateY(-3px);
}
.feature-icon {
	width: 46px;
	height: 46px;
	background: rgba(248, 40, 90, 0.12);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--primary);
	margin-bottom: 1rem;
}
.feature-card h4 {
	font-size: 0.95rem;
	color: var(--white);
	margin-bottom: 0.4rem;
}
.feature-card p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

/* --- PROCESS FLOW --- */
#processo {
	background: var(--light);
}
.flow-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.flow-step {
	padding: 2rem;
	text-align: center;
	position: relative;
}
.flow-step:not(:last-child) {
	border-right: 1px solid var(--gray-light);
}
.flow-step-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin: 0 auto 1rem;
}
.flow-step:nth-child(1) .flow-step-icon {
	background: rgba(248, 40, 90, 0.1);
	color: var(--primary);
}
.flow-step:nth-child(2) .flow-step-icon {
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}
.flow-step:nth-child(3) .flow-step-icon {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}
.flow-step-tag {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 0.35rem;
}
.flow-step h3 {
	font-size: 1rem;
	margin-bottom: 0.4rem;
}
.flow-step p {
	font-size: 0.82rem;
}
.flow-arrow {
	position: absolute;
	right: -12px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	z-index: 2;
}

/* --- FAQ --- */
#faq {
	background: var(--white);
}
.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.faq-left {
	max-width: 340px;
}
.faq-left h2 {
	margin-bottom: 0.75rem;
}
.faq-left p {
	margin-bottom: 1.5rem;
}
.accordion-item-logix {
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	margin-bottom: 0.75rem;
	overflow: hidden;
	transition: var(--transition);
}
.accordion-item-logix:hover {
	border-color: var(--primary);
}
.accordion-toggle-logix {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
	text-align: left;
	gap: 1rem;
}
.accordion-toggle-logix .icon {
	width: 26px;
	height: 26px;
	background: var(--light);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	flex-shrink: 0;
	transition: var(--transition);
	color: var(--gray);
}
.accordion-item-logix.open .accordion-toggle-logix .icon {
	background: var(--primary);
	color: var(--white);
	transform: rotate(45deg);
}
.accordion-body-logix {
	display: none;
	padding: 0 1.25rem 1rem;
	font-size: 0.875rem;
	color: var(--gray);
	line-height: 1.7;
}
.accordion-body-logix.open {
	display: block;
}

/* --- CTA BANNER --- */
#cta-banner {
	background: linear-gradient(135deg, var(--dark) 0%, #2d0a18 100%);
	position: relative;
	overflow: hidden;
}
#cta-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(248, 40, 90, 0.15) 0%, transparent 70%);
	pointer-events: none;
}
.cta-inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
.cta-inner h2 {
	color: var(--white);
	margin-bottom: 0.75rem;
}
.cta-inner p {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2rem;
}
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.btn-whatsapp {
	background: #25d366;
	color: var(--white);
}
.btn-whatsapp:hover {
	background: #1fba58;
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* --- FOOTER --- */
#footer {
	background: var(--dark);
	padding: 64px 1rem 0;
	color: rgba(255, 255, 255, 0.55);
}
.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 0.5rem;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img {
	height: 24px;
	margin-bottom: 1rem;
}
.footer-brand p {
	font-size: 0.85rem;
	max-width: 260px;
	line-height: 1.7;
}
.footer-socials {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.25rem;
}
.footer-socials a {
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	transition: var(--transition);
}
.footer-socials a:hover {
	background: var(--primary);
	color: var(--white);
}
.footer-col h5 {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1rem;
}
.footer-col a {
	display: block;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	padding: 0.1rem;
	transition: var(--transition);
}
.footer-col a:hover {
	color: var(--white);
}
.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	font-size: 0.8rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a:hover {
	color: var(--white);
}

/* --- INNER PAGES --- */
.page-hero-sobre {
	background:
		linear-gradient(rgba(6, 9, 13, 0.3), rgba(6, 9, 13, 0.3)),
		url(../img/hero-header-sobre.png) center / cover;
	padding: 120px 1rem 60px;
	text-align: center;
}
.page-hero-sobre h1 {
	color: var(--white);
	margin-bottom: 0.75rem;
}
.page-hero-sobre p {
	color: rgba(255, 255, 255, 0.55);
	max-width: 540px;
	margin: 0 auto;
}

.page-hero-planos {
	background:
		linear-gradient(rgba(6, 9, 13, 0.3), rgba(6, 9, 13, 0.5)),
		url(../img/hero-header-planos.png) top / cover;
	padding: 120px 1rem 60px;
	text-align: center;
}
.page-hero-planos h1 {
	color: var(--white);
	margin-bottom: 0.75rem;
}
.page-hero-planos p {
	color: rgba(255, 255, 255, 0.55);
	max-width: 540px;
	margin: 0 auto;
}

.page-hero-contato {
	background: linear-gradient(135deg, var(--dark) 0%, #2d0a18 100%);
	padding: 120px 1rem 60px;
	text-align: center;
}
.page-hero-contato h1 {
	color: var(--white);
	margin-bottom: 0.75rem;
}
.page-hero-contato p {
	color: rgba(255, 255, 255, 0.55);
	max-width: 540px;
	margin: 0 auto;
}

.hero-diferencia {
	background:
		linear-gradient(rgba(6, 9, 13, 0.9), rgba(6, 9, 13, 0.8)),
		url(../img/hero-content-sobre.png) center / cover;
}

.hero-contato {
	background:
		linear-gradient(rgba(6, 9, 13, 0.9), rgba(6, 9, 13, 0.8)),
		url(../img/hero-content-contato.png) center / cover;
}

/* Planos */
.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}
.plan-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	transition: var(--transition);
	position: relative;
}
.plan-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
	transform: translateY(-6px);
}
.plan-card.popular {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(248, 40, 90, 0.12);
}
.plan-popular-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.25rem 0.85rem;
	border-radius: 999px;
	white-space: nowrap;
}
.plan-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.plan-name {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.25rem;
}
.plan-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.plan-card .plan-desc {
	font-size: 0.85rem;
	margin-bottom: 1.5rem;
	min-height: 60px;
}
.plan-features-list {
	margin-bottom: 1.75rem;
}
.plan-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.84rem;
	color: var(--navy);
	padding: 0.35rem 0;
	border-bottom: 1px solid var(--gray-light);
}
.plan-feature-item:last-child {
	border-bottom: none;
}
.plan-feature-item i {
	color: var(--primary);
	font-size: 0.8rem;
	margin-top: 3px;
	flex-shrink: 0;
}

/* Contato */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	align-items: start;
}
.contact-info h3 {
	margin-bottom: 0.5rem;
}
.contact-info p {
	margin-bottom: 2rem;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.contact-item-icon {
	width: 44px;
	height: 44px;
	background: var(--primary-soft);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--primary);
	flex-shrink: 0;
}
.contact-item h5 {
	font-size: 0.85rem;
	margin-bottom: 0.2rem;
	color: #e2e8f0;
}
.contact-item p {
	font-size: 0.85rem;
	margin: 0;
}
.contact-form-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 2.5rem;
	box-shadow: var(--shadow);
}
.form-group {
	margin-bottom: 1.25rem;
}
.form-group label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.45rem;
}
.form-control-logix {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 1px solid var(--gray-light);
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: "Inter", sans-serif;
	color: var(--navy);
	background: var(--white);
	transition: var(--transition);
	outline: none;
	resize: vertical;
}
.form-control-logix:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(248, 40, 90, 0.08);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

/* Sobre */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-visual {
	background: linear-gradient(135deg, var(--dark), var(--navy));
	border-radius: var(--radius);
	padding: 2.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.about-visual-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 1.25rem;
	text-align: center;
}
.about-visual-card .num {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--white);
}
.about-visual-card .lbl {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1rem;
}
.value-card {
	background: var(--light);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 1.5rem;
	text-align: center;
	transition: var(--transition);
}
.value-card:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.value-card .value-icon {
	width: 48px;
	height: 48px;
	background: var(--primary-soft);
	border-radius: 12px;
	color: var(--primary);
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.75rem;
}
.value-card h4 {
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}
.value-card p {
	font-size: 0.82rem;
}

/* Team */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.team-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 1.75rem;
	text-align: center;
	transition: var(--transition);
}
.team-card:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.team-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--primary-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary);
	margin: 0 auto 1rem;
	font-weight: 700;
}
.team-card h4 {
	font-size: 1rem;
	margin-bottom: 0.2rem;
}
.team-card .role {
	font-size: 0.8rem;
	color: var(--primary);
	font-weight: 600;
}

/* Scroll to top */
#scrollTop {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 44px;
	height: 44px;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: var(--transition);
	z-index: 999;
	box-shadow: 0 4px 16px rgba(248, 40, 90, 0.4);
}
#scrollTop.visible {
	opacity: 1;
	transform: translateY(0);
}
#scrollTop:hover {
	background: var(--primary-dark);
}

/* AOS manual */
[data-aos] {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
[data-aos].aos-in {
	opacity: 1;
	transform: translateY(0);
}
[data-aos="fade-left"] {
	transform: translateX(-28px);
}
[data-aos="fade-right"] {
	transform: translateX(28px);
}
[data-aos="fade-left"].aos-in,
[data-aos="fade-right"].aos-in {
	transform: translateX(0);
}
[data-aos-delay="100"] {
	transition-delay: 0.1s;
}
[data-aos-delay="200"] {
	transition-delay: 0.2s;
}
[data-aos-delay="300"] {
	transition-delay: 0.3s;
}
[data-aos-delay="400"] {
	transition-delay: 0.4s;
}
[data-aos-delay="500"] {
	transition-delay: 0.5s;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 1024px) {
	.solutions-grid {
		grid-template-columns: 1fr;
	}
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.hero-visual {
		display: none;
	}
}
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.nav-cta {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid::before {
		display: none;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.flow-wrapper {
		grid-template-columns: 1fr;
	}
	.flow-step:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid var(--gray-light);
	}
	.flow-arrow {
		display: none;
	}
	.faq-grid {
		grid-template-columns: 1fr;
	}
	.faq-left {
		max-width: 100%;
	}
	.plans-grid {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.values-grid {
		grid-template-columns: 1fr;
	}
	.team-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		justify-content: center;
		text-align: center;
	}
}
