:root {
	--bg: #000000; /* Fundo mais escuro e uniforme */
	--bg-soft: #0a0a0a; /* Fundo secundário mais escuro */
	--text: #eaf2ff;
	--text-soft: #a8b8d8;
	--brand: #5ba3ff; /* Azul claro */
	--accent: #ff6b00; /* Laranja */
	--line: #1f3a5f;
	--card: #0f182b;
	--shadow: 0 18px 48px rgba(1, 3, 12, 0.68);
	--transition: all 0.3s cubic-bezier(0.32, 0.72, 0.3, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
	color: var(--text);
	background:
		radial-gradient(
			circle at 5% -8%,
			rgba(91, 163, 255, 0.28) 0,
			transparent 42%
		),
		radial-gradient(
			circle at 95% 14%,
			rgba(255, 107, 0, 0.22) 0,
			transparent 38%
		),
		radial-gradient(
			circle at 50% 100%,
			rgba(47, 124, 255, 0.14) 0,
			transparent 50%
		),
		var(--bg);
	line-height: 1.6;
}

img {
	width: 100%;
	display: block;
	border-radius: 18px;
}

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(7, 10, 18, 0.72);
	border-bottom: 1px solid rgba(91, 163, 255, 0.2);
	transition: var(--transition);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 16px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text);
	font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
	font-weight: 700;
	letter-spacing: 0.03em;
	transition: var(--transition);
}

.logo-slot {
	width: 74px;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 0;
	transition: var(--transition);
}

.brand:hover .logo-slot {
	transform: scale(1.03);
	filter: drop-shadow(0 0 10px rgba(91, 163, 255, 0.35));
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.main-nav a {
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 10px;
	transition: var(--transition);
	position: relative;
}

.main-nav a:hover {
	color: var(--brand);
	background: rgba(91, 163, 255, 0.12);
}

.btn-nav {
	border: 1px solid rgba(91, 163, 255, 0.32);
	transition: var(--transition);
}

.main-nav a.btn-nav:hover {
	background: rgba(91, 163, 255, 0.15);
	border-color: rgba(91, 163, 255, 0.56);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(91, 163, 255, 0.24);
	border-radius: 10px;
	background: rgba(15, 27, 49, 0.6);
	transition: var(--transition);
	cursor: pointer;
}

.menu-toggle:hover {
	background: rgba(91, 163, 255, 0.12);
	border-color: rgba(91, 163, 255, 0.36);
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: #d0deff;
	margin: 4px auto;
	transition: var(--transition);
}

.hero {
	padding: 88px 0 70px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 42px;
	align-items: center;
}

.kicker {
	margin: 0;
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	font-size: 12px;
}

h1,
h2,
h3 {
	font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
	line-height: 1.2;
	margin-top: 0;
}

h1 {
	margin: 10px 0 18px;
	font-size: clamp(32px, 4.2vw, 56px);
	max-width: 18ch;
}

h2 {
	font-size: clamp(28px, 3vw, 40px);
	margin-bottom: 14px;
}

.hero-copy p {
	color: var(--text-soft);
	max-width: 56ch;
}

.hero-actions {
	margin-top: 28px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	min-height: 46px;
	border-radius: 999px;
	padding: 0 22px;
	font-weight: 600;
	border: 1px solid transparent;
	transition: var(--transition);
}

.btn-primary {
	color: #ffffff;
	background: #5ba3ff; /* Azul sólido para o botão */
	box-shadow: none; /* Removendo sombras para simplificar */
}

.btn-primary:hover {
	background: #4a90e2; /* Azul mais escuro no hover */
}

.btn-ghost {
	color: var(--text);
	border-color: rgba(91, 163, 255, 0.28);
	background: rgba(15, 27, 49, 0.7);
}

.btn-ghost:hover {
	color: var(--brand);
	background: rgba(91, 163, 255, 0.12);
	border-color: rgba(91, 163, 255, 0.48);
}

.hero-art {
	position: relative;
}

.hero-art img {
	min-height: 420px;
	object-fit: cover;
	background-image: url('https://via.placeholder.com/800x420'); /* Nova imagem de exemplo */
	background-size: cover;
	background-position: center;
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.logo-area {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -18px;
	background: rgba(12, 23, 42, 0.88);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 10px 16px;
	width: auto;
	max-width: 220px;
	z-index: 1;
	display: flex;
	justify-content: center;
}

.logo-area img {
	display: block;
	width: 200px;
	height: auto;
	object-fit: contain;
}

.about,
.services,
.showcase,
.contact {
	padding: 74px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 38px;
	align-items: center;
}

.about-content p {
	color: var(--text-soft);
}

.section-head {
	max-width: 700px;
	margin-bottom: 28px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	background: linear-gradient(
		170deg,
		rgba(15, 24, 43, 0.96),
		rgba(10, 14, 26, 0.96)
	);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 22px;
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(91, 163, 255, 0.32);
	box-shadow:
		var(--shadow),
		0 0 24px rgba(91, 163, 255, 0.2),
		0 0 0 1px rgba(255, 107, 0, 0.36);
}

.service-card h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.service-card p {
	margin: 0;
	color: var(--text-soft);
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.showcase-item {
	margin: 0;
}

.showcase-item img {
	height: 260px;
	object-fit: cover;
}

.showcase-item figcaption {
	margin-top: 10px;
	color: var(--text-soft);
	font-size: 14px;
}

.contact-box {
	background:
		linear-gradient(
			130deg,
			rgba(47, 124, 255, 0.95),
			rgba(255, 106, 0, 0.95)
		),
		#205fda;
	color: #ffffff;
	border-radius: 24px;
	padding: clamp(24px, 4vw, 44px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.contact-box .kicker {
	color: #ffe2c5;
}

.contact-box p {
	margin-bottom: 0;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 280px;
}

.contact .btn-primary {
	background: #fffbf5;
	color: #934800;
	box-shadow: none;
}

.contact .btn-ghost {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.66);
	background: rgba(13, 32, 73, 0.22);
}

.contact .whatsapp-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.contact .whatsapp-icon {
	color: #25d366;
	line-height: 0;
}

.contact .whatsapp-icon svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: currentColor;
}

.site-footer {
	padding: 24px 0 28px;
}

.footer-wrap {
	border-top: 1px solid var(--line);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
}

.footer-logo img {
	height: 72px;
	width: auto;
	object-fit: contain;
	border-radius: 0;
}

.footer-wrap p {
	margin: 0;
	color: var(--text-soft);
}

.footer-wrap a {
	text-decoration: none;
	color: var(--accent);
	font-weight: 600;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.6s cubic-bezier(0.32, 0.72, 0.3, 1),
		transform 0.6s cubic-bezier(0.32, 0.72, 0.3, 1);
}

.reveal.show {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.1s;
}

.delay-2 {
	transition-delay: 0.18s;
}

@media (max-width: 980px) {
	.hero-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.hero-art {
		order: -1;
	}

	.services-grid,
	.showcase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 760px) {
	.main-nav {
		position: absolute;
		right: 4vw;
		top: 76px;
		width: min(280px, 92vw);
		background: #101d33;
		border: 1px solid var(--line);
		border-radius: 14px;
		padding: 10px;
		flex-direction: column;
		align-items: stretch;
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: all 0.25s ease;
	}

	.main-nav.open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.menu-toggle {
		display: block;
	}

	.services-grid,
	.showcase-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 62px;
	}

	.hero-art img,
	.showcase-item img {
		min-height: 220px;
		height: 220px;
	}
}
