@charset "utf-8";

*/ * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00d9ff;
	--dark: #091015;
	--light: #ffffff;
	--glow: #2d3c46;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;
}

body {
	font-family: var(--font-body);
	background: var(--dark);
	overflow-x: hidden;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: #4a5864;
	border-radius: 10px;
}

/* Logo */
.logo-container {
	position: absolute;
	top: 30px;
	left: 50px;
	z-index: 100;
	opacity: 0;
	animation: fadeInLogo 1s ease forwards;
	animation-delay: 0.5s;
}

.dados-container {
	display: block;
	position: absolute;
	top: 80px;
	right: 70px;
	z-index: 100;
	opacity: 0;
	animation: fadeInLogo 1s ease forwards;
	animation-delay: 0.5s;
	color: #a3b4ba;
	font-size: 18px;
	line-height: 30px;
	text-align: right;
}

.dados-container-mobile {
	display: none;
}

@keyframes fadeInLogo {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo_bernardes {
	max-width: 220px;
}

.logo-text {
	font-family: var(--font-display);
	font-size: 2.3rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background: linear-gradient(135deg, #a3b4ba, #72858c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(32, 39, 40, 0.3);
	line-height: 50px;
}

/* Hero Section with Multiple Parallax Layers */
.hero-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(180deg, var(--dark) 0%, #11202c 50%, var(--dark) 100%);
}

.parallax-layer {
	position: absolute;
	width: 110%;
	height: 100%;
	left: -5%;
}

/* Background Layer - Slowest */
.layer-bg {
	background: url('images/back.png');
	background-size: cover;
}

/* Foreground Layer - Fastest */
.layer-fg {
	transform: translateZ(0) scale(1);
	pointer-events: none;
}

.glowing-orb {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
	filter: blur(20px);
	animation: orb-float 15s infinite linear;
}

.orb-1 {
	top: 20vh;
	animation-delay: 0s;
}

.orb-2 {
	top: 50vh;
	animation-delay: 5s;
}

@keyframes orb-float {
	0% {
		left: -100px;
	}

	100% {
		left: calc(100% + 100px);
	}
}

/* Hero Content */
.hero-content {
	position: absolute;
	top: 56%;
	left: 50%;
	transform: translate(-100%, -100%);
	text-align: center;
	z-index: 10;
	color: var(--light);
	opacity: 0;
	animation: fadeInHero 1s ease forwards;
	animation-delay: 0.3s;
}

@keyframes fadeInHero {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 20px));
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 900;
	background: linear-gradient(135deg, #fff, #a3b4ba);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.hero-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	font-weight: 300;
	opacity: 0.8;
	margin-bottom: 50px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a949a;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #c2070a, #dd080c);
	color: var(--light);
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.5s ease;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	box-shadow: 0 10px 30px rgba(234, 29, 30, 0.2);
}

/* Content Sections */
.content-section {
	position: relative;
	min-height: 100vh;
	padding: 100px 5%;
	background: var(--dark);
	z-index: 20;
	overflow: hidden;
}

.section-gradient {
	background: linear-gradient(180deg, var(--dark) 0%, #11202c 50%, var(--dark) 100%);
}

/* Gallery Section Specific Gradient */
.gallery-section.section-gradient {
	background: linear-gradient(180deg, var(--dark) 0%, #2a2a3e 50%, var(--dark) 100%);
}

/* Parallax Background for Features Section */
.features-section-bg {
	position: relative;
	background: linear-gradient(180deg, var(--dark) 0%, #11202c 50%, var(--dark) 100%);
}

.features-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.features-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 150px,
			rgba(87, 100, 111, 0.06) 150px,
			rgba(87, 100, 111, 0.06) 153px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 150px,
			rgba(221, 12, 17, 0.06) 150px,
			rgba(221, 12, 17, 0.06) 153px);
	animation: grid-shift 30s linear infinite;
}

@keyframes grid-shift {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(153px, 153px);
	}
}

.features-grid-large {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 300px,
			rgba(0, 255, 204, 0.04) 300px,
			rgba(0, 255, 204, 0.04) 304px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 300px,
			rgba(0, 255, 204, 0.04) 300px,
			rgba(0, 255, 204, 0.04) 304px);
	animation: grid-shift-slow 45s linear infinite reverse;
	opacity: 0.7;
}

@keyframes grid-shift-slow {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(-304px, -304px);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #c2070a, #fc393c);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
	margin: 50px 0;
}

.about-text {
	color: rgba(255, 255, 255, 0.9);
}

.about-text h3 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--glow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.about-text p {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.9;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-visual {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px !important;
}

.img_leo {
	max-height: 600px;
}

/* 3D Carousel Features Section */
.features-container {
	position: relative;
	height: 520px;
	perspective: 1200px;
	margin: 50px 0;
}

.servicos-svg {
	display: block;
	width: 100%;
	padding: 60px 0;
}

.servicos-mobile {
	display: none;
}

.svg-wrapper {
	position: relative;
	max-width: 1000px;
	margin: auto;
}

.carro-svg {
	width: 100%;
	max-width: 380px;
	display: block;
	margin: auto;
	z-index: 2;
	position: relative;
}

.overlay-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.linha {
	stroke: #e30613;
	stroke-width: 2;
	fill: none;
}

.ponto {
	fill: transparent;
	stroke: #e30613;
	stroke-width: 2;
}

.texto {
	fill: #fff;
	font-family: var(--font-heading);
	font-size: clamp(1rem, 2.3vw, 1.5rem);
	font-weight: 300;
	letter-spacing: 0.05em;
}

.marcas-carousel {
	width: 100%;
	overflow: hidden;
	margin-top: 50px;
	padding: 40px 0;
	position: relative;
}

.marcas-track {
	display: flex;
	gap: 80px;
	animation: scrollMarcas 25s linear infinite;
}

.marcas-track img {
	height: 60px;
	opacity: 0.7;
	transition: 0.3s ease;
}

.marcas-track img:hover {
	opacity: 1;
	transform: scale(1.05);
}

@keyframes scrollMarcas {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.marcas-carousel::before,
.marcas-carousel::after {
	content: "";
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 2;
}

.marcas-carousel::before {
	left: 0;
	background: linear-gradient(to right, #0d1318, transparent);
}

.marcas-carousel::after {
	right: 0;
	background: linear-gradient(to left, #0d1318, transparent);
}

.logo_footer {
	max-width: 150px;
}

/* Footer Section */
.footer {
	background: linear-gradient(180deg, var(--dark) 0%, #0a0a0f 100%);
	color: #fff;
	padding: 60px 5% 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, #c2070a, #dd080c);
	animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}

.footer-container {
	max-width: 1300px;
	margin: auto;

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	align-items: start;
}

.footer-col h3 {
	font-size: 22px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #a3b4ba, #72858c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-line {
	display: block;
	width: 50px;
	height: 3px;
	background: #dc1216;
	margin-bottom: 20px;
}

/* Logo */
.logo-col {
	display: flex;
	align-items: center;
}

.logo_footer {
	max-width: 180px;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	display: flex;
	align-items: center;
	gap: 20px;

	margin-bottom: 15px;
	font-size: 15px;
	opacity: 0.9;
	line-height: 25px;
}

.footer-list i {
	width: 18px;
	height: 18px;
	background: transparent;
	border-radius: 50%;
	display: inline-block;
}

/* Rodapé final */
.footer-bottom {
	text-align: center;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	opacity: 0.7;
}

.contato-link {
	color: #a3b4ba;
	font-size: 18px;
	line-height: 30px;
	text-align: right;
	text-decoration: none;
}

.link_footer {
	color: #fff;
	font-size: 15px;
	line-height: 30px;
	text-align: left;
	text-decoration: none;
}