/* ── TOKENS ─────────────────────────────────────────── */
:root {
	--bg: #0A0E1A;
	--bg-mid: #0F1628;
	--bg-card: #141D35;
	--accent: #00D4FF;
	--accent2: #0099CC;
	--cta: #FF6B35;
	--cta-hover: #E85520;
	--text: #E8F4FD;
	--muted: #6C7A9C;
	--border: rgba(0, 212, 255, 0.15);
	--glow: 0 0 20px rgba(0, 212, 255, 0.3);
	--radius: 12px;
	--hdr-h: 72px;
}

/* ── RESET ───────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--bg);
}

::-webkit-scrollbar-thumb {
	background: var(--accent2);
	border-radius: 3px;
}

/* ── HEADER ──────────────────────────────────────────── */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--hdr-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.25rem;
	background: rgba(10, 14, 26, 0.85);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
	transition: background .3s;
}

#header.scrolled {
	background: rgba(10, 14, 26, 0.97);
}

.logo {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 1.35rem;
	color: var(--accent);
	letter-spacing: .04em;
	text-shadow: var(--glow);
}

.logo span {
	color: var(--text);
}

nav {
	display: none;
	gap: 2rem;
}

nav a {
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .06em;
	color: var(--muted);
	text-transform: uppercase;
	transition: color .2s;
}

nav a:hover {
	color: var(--accent);
}

.nav-cta {
	display: none;
	background: var(--cta);
	color: #fff;
	padding: .45rem 1.1rem;
	border-radius: 6px;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .05em;
	transition: background .2s, transform .15s;
}

.nav-cta:hover {
	background: var(--cta-hover);
	transform: scale(1.04);
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	background: none;
	border: none;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0;
	position: fixed;
	top: var(--hdr-h);
	left: 0;
	right: 0;
	background: rgba(10, 14, 26, 0.98);
	z-index: 999;
	padding: 1rem 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
	display: flex;
}

.mobile-nav a {
	padding: .85rem 0;
	font-size: .95rem;
	font-weight: 500;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	border-bottom: 1px solid var(--border);
	transition: color .2s;
}

.mobile-nav a:last-child {
	border-bottom: none;
}

.mobile-nav a:hover {
	color: var(--accent);
}

@media(min-width:768px) {
	nav {
		display: flex;
	}

	.nav-cta {
		display: block;
	}

	.hamburger {
		display: none;
	}
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--hdr-h) + 3rem) 1.25rem 4rem;
	overflow: hidden;
}

.circuit-canvas {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(0, 212, 255, 0.08);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: .35rem .9rem;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	width: fit-content;
}

.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .4;
		transform: scale(.6)
	}
}

.hero-title {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(2rem, 8vw, 4.5rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -.01em;
	margin-bottom: 1.25rem;
}

.hero-title .line2 {
	color: var(--accent);
	display: block;
}

.hero-sub {
	font-size: clamp(.95rem, 2.5vw, 1.15rem);
	color: var(--muted);
	max-width: 540px;
	margin-bottom: 2.5rem;
	line-height: 1.75;
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg);
	padding: .85rem 1.75rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .04em;
	transition: box-shadow .25s, transform .15s;
}

.btn-primary:hover {
	box-shadow: 0 0 24px rgba(0, 212, 255, .5);
	transform: translateY(-2px);
}

.btn-ghost {
	border: 1px solid var(--border);
	color: var(--text);
	padding: .85rem 1.75rem;
	border-radius: 8px;
	font-weight: 500;
	font-size: .95rem;
	transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.stat-item {}

.stat-num {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
}

.stat-label {
	font-size: .78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .07em;
}

/* ── SECTION BASE ────────────────────────────────────── */
section {
	padding: 5rem 1.25rem;
}

.section-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: .75rem;
}

.section-title {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.6rem, 4.5vw, 2.6rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.25rem;
}

.section-sub {
	color: var(--muted);
	max-width: 560px;
	line-height: 1.75;
	margin-bottom: 3rem;
}

@media(min-width:768px) {
	section {
		padding: 6rem 3rem;
	}
}

@media(min-width:1200px) {
	section {
		padding: 7rem 6rem;
	}
}

/* ── SERVICES ────────────────────────────────────────── */
#services {
	background: var(--bg-mid);
}

.services-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

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

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

.srv-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	transition: transform .25s, border-color .25s, box-shadow .25s;
	cursor: default;
	position: relative;
	overflow: hidden;
}

.srv-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	transform: scaleX(0);
	transition: transform .3s;
}

.srv-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent);
	box-shadow: var(--glow);
}

.srv-card:hover::after {
	transform: scaleX(1);
}

.srv-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: rgba(0, 212, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
}

.srv-title {
	font-family: 'Orbitron', sans-serif;
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: .6rem;
}

.srv-desc {
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.7;
}

.srv-list {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}

.srv-list li {
	font-size: .8rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: .5rem;
}

.srv-list li::before {
	content: '›';
	color: var(--accent);
	font-size: 1rem;
	line-height: 1;
}

/* ── WHY US ──────────────────────────────────────────── */
#whyus {}

.why-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

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

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

.why-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color .25s;
}

.why-card:hover {
	border-color: rgba(0, 212, 255, .4);
}

.why-num {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.8rem;
	font-weight: 900;
	color: rgba(0, 212, 255, .2);
	min-width: 2.5rem;
	line-height: 1;
}

.why-text h3 {
	font-size: .95rem;
	font-weight: 600;
	margin-bottom: .4rem;
}

.why-text p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.7;
}

/* ── BRANDS TICKER ───────────────────────────────────── */
.brands-section {
	padding: 2.5rem 0;
	background: var(--bg-mid);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}

.ticker-wrap {
	display: flex;
	overflow: hidden;
}

.ticker {
	display: flex;
	gap: 3rem;
	align-items: center;
	animation: ticker 18s linear infinite;
	white-space: nowrap;
	flex-shrink: 0;
}

.ticker-item {
	font-family: 'Orbitron', sans-serif;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--muted);
	text-transform: uppercase;
	padding: 0 1.5rem;
	border-right: 1px solid var(--border);
}

@keyframes ticker {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

/* ── TESTIMONIALS ────────────────────────────────────── */
#depoimentos {
	background: var(--bg-mid);
}

.testi-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

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

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

.testi-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.75rem 1.5rem;
}

.stars {
	color: #FFB800;
	font-size: .9rem;
	margin-bottom: .85rem;
	letter-spacing: .1em;
}

.testi-text {
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.75;
	margin-bottom: 1.25rem;
	font-style: italic;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent2), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Orbitron', sans-serif;
	font-size: .85rem;
	font-weight: 700;
	color: var(--bg);
}

.testi-name {
	font-size: .85rem;
	font-weight: 600;
}

.testi-city {
	font-size: .75rem;
	color: var(--muted);
}

/* ── CONTATO & MAPA ─────────────────────────────────── */
#contato {}

.contact-layout {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

@media(min-width:1024px) {
	.contact-layout {
		grid-template-columns: 1fr 1fr;
	}
}

.lojas-grid {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

@media(min-width:640px) {
	.lojas-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.loja-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.loja-card h4 {
	font-family: 'Orbitron', sans-serif;
	font-size: .8rem;
	color: var(--accent);
	margin-bottom: .6rem;
	font-weight: 700;
}

.loja-card p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.6;
}

.loja-card .loja-fone {
	color: var(--text);
	font-weight: 600;
	margin-top: .5rem;
	font-size: .85rem;
}

.map-container {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	height: 260px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media(min-width:480px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: .45rem;
}

.form-group label {
	font-size: .78rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: .05em;
	text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: .75rem 1rem;
	color: var(--text);
	font-family: 'Inter', sans-serif;
	font-size: .9rem;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, .12);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group select option {
	background: var(--bg-card);
}

.btn-submit {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--bg);
	font-weight: 700;
	font-size: .95rem;
	padding: .9rem 2rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: opacity .2s, transform .15s;
	font-family: 'Inter', sans-serif;
	letter-spacing: .04em;
}

.btn-submit:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* ── NEWSLETTER ──────────────────────────────────────── */
#newsletter {
	background: linear-gradient(135deg, #0D1830 0%, #0A1424 100%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.newsletter-inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	text-align: center;
}

@media(min-width:768px) {
	.newsletter-inner {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}
}

.newsletter-text h2 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: 700;
	margin-bottom: .5rem;
}

.newsletter-text p {
	color: var(--muted);
	font-size: .88rem;
}

.newsletter-form {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 480px;
}

.newsletter-form input {
	flex: 1;
	min-width: 220px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: .8rem 1.1rem;
	color: var(--text);
	font-family: 'Inter', sans-serif;
	font-size: .9rem;
	outline: none;
	transition: border-color .2s;
}

.newsletter-form input:focus {
	border-color: var(--accent);
}

.newsletter-form button {
	background: var(--accent);
	color: var(--bg);
	font-weight: 700;
	padding: .8rem 1.5rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: .9rem;
	transition: box-shadow .2s;
	white-space: nowrap;
}

.newsletter-form button:hover {
	box-shadow: 0 0 18px rgba(0, 212, 255, .4);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
	background: #060910;
	padding: 4rem 1.25rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-bottom: 3rem;
}

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

@media(min-width:1024px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

.footer-brand .logo {
	font-size: 1.25rem;
	margin-bottom: .85rem;
}

.footer-brand p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.7;
	max-width: 280px;
}

.footer-col h5 {
	font-family: 'Orbitron', sans-serif;
	font-size: .75rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 1rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: .55rem;
}

.footer-col ul li a {
	font-size: .83rem;
	color: var(--muted);
	transition: color .2s;
}

.footer-col ul li a:hover {
	color: var(--text);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	font-size: .78rem;
	color: var(--muted);
}

/* ── DEV BAR (PARALLAX) ──────────────────────────────── */
#dev-bar {
	background: #020408;
	padding: 1.8rem 1.25rem;
	border-top: 1px solid rgba(0, 212, 255, .08);
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	align-items: center;
	justify-content: center;
	text-align: center;
	transform: translateY(100%);
	opacity: 0;
	transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .5s;
}

#dev-bar.visible {
	transform: translateY(0);
	opacity: 1;
}

#dev-bar p {
	font-size: .85rem;
	color: #3A4566;
}

#dev-bar a {
	font-size: .85rem;
	color: var(--accent2);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s;
}

#dev-bar a:hover {
	color: var(--accent);
}

.dev-heart {
	color: var(--cta);
	font-size: 0.85rem;
}

/* ── WHATSAPP FLOATING ───────────────────────────────── */
#wabtn {
	position: fixed;
	bottom: 1.5rem;
	right: 1.25rem;
	z-index: 900;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(37, 211, 102, .5);
	animation: wapulse 2.2s infinite;
	cursor: pointer;
	transition: transform .2s;
	text-decoration: none;
}

#wabtn:hover {
	transform: scale(1.1);
}

#wabtn svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}

@keyframes wapulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
	}

	70% {
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.wa-tooltip {
	position: absolute;
	right: 68px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: .4rem .85rem;
	font-size: .78rem;
	font-weight: 600;
	white-space: nowrap;
	color: var(--text);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}

#wabtn:hover .wa-tooltip {
	opacity: 1;
}

/* ── SCROLL-IN ANIMATIONS ────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ── HERO GRADIENT ORBS ──────────────────────────────── */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.orb1 {
	width: 420px;
	height: 420px;
	background: rgba(0, 152, 200, .18);
	top: -100px;
	right: -80px;
}

.orb2 {
	width: 320px;
	height: 320px;
	background: rgba(255, 107, 53, .08);
	bottom: 80px;
	left: -60px;
}

/* ── UTILITY ─────────────────────────────────────────── */
.text-accent {
	color: var(--accent);
}

.mt-auto {
	margin-top: auto;
}

.tag {
	display: inline-block;
	background: rgba(0, 212, 255, .08);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: .2rem .55rem;
	font-size: .72rem;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-right: .35rem;
	margin-bottom: .35rem;
}
