/* Reset & Base Styles */
:root {
  --primary-color: #00FF38; /* Verde Neon */
  --secondary-color: #000000; /* Preto Fundo */
  --metallic-light: #C9C9C9; /* Cinza Metálico Claro */
  --metallic-mid: #8F8F8F; /* Cinza Metálico Médio */
  --white: #FFFFFF;
  --text-main: #FFFFFF;
  --text-muted: #C9C9C9;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-neon: 0 0 20px rgba(0, 255, 56, 0.2);
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--secondary-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--metallic-light);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.btn-whatsapp-small {
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: #000 !important;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem !important;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 255, 56, 0.3);
}

/* Hero Section Minimalista */
.hero {
  height: 80vh; /* Altura reduzida para focar na mensagem */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  background: radial-gradient(circle at top right, rgba(0, 255, 56, 0.05) 0%, #000000 70%);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.hero::after {
    display: none;
}

.hero-content {
  max-width: 900px;
}

h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.4rem;
  color: var(--metallic-light);
  margin-bottom: 3rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.8rem;
  background-color: var(--primary-color);
  color: #000;
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 255, 56, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 255, 56, 0.5);
  background-color: var(--white);
}

/* Services */
.services {
  padding: 10rem 10% 5rem;
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 5rem;
  font-weight: 800;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--glass);
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  background: rgba(0, 255, 56, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-neon);
}

.service-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--metallic-light);
}

.service-card p {
  color: var(--metallic-mid);
  font-weight: 300;
  font-size: 1rem;
}

/* CTA Section Minimalista */
.cta-section {
    padding: 10rem 10%;
    text-align: center;
    background: #000000;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}

.cta-section h2 { margin-bottom: 1.5rem; font-size: 3.5rem; }
.cta-section p { font-size: 1.3rem; color: var(--metallic-light); margin-bottom: 3rem; }

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 4rem;
  background-color: var(--primary-color);
  color: #000;
  text-decoration: none;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 255, 56, 0.4);
}

.btn-primary-large:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 255, 56, 0.6);
  background-color: var(--white);
}

/* Footer */
footer {
  padding: 5rem 10%;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

footer .logo { margin-bottom: 1rem; }
footer p { color: var(--metallic-mid); font-size: 0.9rem; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  .hero { background-position: right center; text-align: center; justify-content: center; padding: 0 5%; }
  .nav-links { display: none; }
  .services { padding: 5rem 5%; }
  .cta-section h2 { font-size: 2.2rem; }
}
