/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VS3 Brand Colors - IDENTIDADE VISUAL CORRETA */
:root {
  --radius: 0.625rem;
  
  /* Cores VS3 - Baseadas nas referências */
  --vs3-primary: #CCFF33;        /* Verde neon principal */
  --vs3-secondary: #4A90E2;      /* Azul secundário */
  --vs3-dark: #000000;           /* Preto absoluto */
  --vs3-dark-gray: #1A1A1A;      /* Cinza escuro */
  --vs3-white: #FFFFFF;          /* Branco puro */
  --vs3-gray: #666666;           /* Cinza médio */
  --vs3-light-gray: #333333;     /* Cinza claro para fundos escuros */
}

/* Gilroy Font Family - Complete Definition */
@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('./src/assets/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Global Font Application */
* {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  background-color: var(--vs3-dark);
  color: var(--vs3-white);
  margin: 0;
  padding: 0;
}

/* Layout Classes */
.min-h-screen {
  min-height: 100vh;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-12 {
  margin-top: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-x-6 > * + * {
  margin-left: 1.5rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

/* Flexbox */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Header */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header-scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-16 {
  width: 4rem;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-full {
  top: 100%;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.right-3 {
  right: 0.75rem;
}

.-bottom-1 {
  bottom: -0.25rem;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

/* Text */
.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.leading-tight {
  line-height: 1.25;
}

.font-black {
  font-weight: 900;
}

.font-semibold {
  font-weight: 600;
}

/* VS3 Typography System - Identidade Visual Correta */
.vs3-display {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--vs3-white);
}

.vs3-h1 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--vs3-white);
}

.vs3-h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--vs3-white);
}

.vs3-h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vs3-white);
}

.vs3-h4 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--vs3-white);
}

.vs3-body-xl {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--vs3-white);
  opacity: 0.9;
}

.vs3-body-lg {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--vs3-white);
  opacity: 0.9;
}

.vs3-body {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--vs3-white);
  opacity: 0.8;
}

.vs3-body-sm {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--vs3-gray);
}

.vs3-caption {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vs3-primary);
}

.vs3-nav {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--vs3-white);
  text-decoration: none;
}

/* VS3 Color Classes - Identidade Visual Correta */
.vs3-text-primary {
  color: var(--vs3-primary);
}

.vs3-text-secondary {
  color: var(--vs3-secondary);
}

.vs3-text-white {
  color: var(--vs3-white);
}

.vs3-text-gray {
  color: var(--vs3-gray);
}

.vs3-text-dark {
  color: var(--vs3-dark);
}

.vs3-bg-primary {
  background-color: var(--vs3-primary);
}

.vs3-bg-secondary {
  background-color: var(--vs3-secondary);
}

.vs3-bg-dark {
  background-color: var(--vs3-dark);
}

.vs3-bg-dark-gray {
  background-color: var(--vs3-dark-gray);
}

.vs3-bg-light-gray {
  background-color: var(--vs3-light-gray);
}

/* Professional Button Styles - Identidade Visual Correta */
.vs3-btn-primary {
  background: var(--vs3-primary);
  color: var(--vs3-dark);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-reset {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--vs3-primary);
  outline: none; /* Remove a borda azul ao clicar/focar */
  -webkit-appearance: none; /* Remove estilos do iOS Safari */
  appearance: none; /* Remove estilos padrão do navegador */
  cursor: pointer;
}

.vs3-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(204, 255, 51, 0.3);
  background: #B8E600;
}

.vs3-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.vs3-btn-primary:hover::before {
  left: 100%;
}

/* Card Styles */
.vs3-card {
  background-color: var(--vs3-light-gray);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vs3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(204, 255, 51, 0.3);
}

/* Rounded */
.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Object */
.object-cover {
  object-fit: cover;
}

/* Opacity */
.opacity-60 {
  opacity: 0.6;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-500 {
  transition-duration: 500ms;
}

/* Hover Effects */
.hover\:vs3-text-primary:hover {
  color: var(--vs3-primary);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-gray-800 {
  --tw-gradient-from: #1f2937;
  --tw-gradient-to: rgb(31 41 55 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-gray-900 {
  --tw-gradient-to: #111827;
}

.from-black\/20 {
  --tw-gradient-from: rgb(0 0 0 / 0.2);
  --tw-gradient-to: rgb(0 0 0 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Aspect Ratio */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

/* Heights */
.h-\[400px\] {
  height: 400px;
}

.h-\[500px\] {
  height: 500px;
}

.h-full {
  height: 100%;
}

/* Max Width */
.max-w-lg {
  max-width: 32rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Border */
.border-t {
  border-top-width: 1px;
}

.border-gray-700 {
  border-color: #374151;
}

.border-gray-800 {
  border-color: #1f2937;
}

/* Shadow */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Z-Index */
.z-50 {
  z-index: 50;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Responsive Design */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:gap-16 {
    gap: 4rem;
  }
  
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .lg\:h-\[500px\] {
    height: 500px;
  }
  
  .lg\:order-last {
    order: 9999;
  }
}

@media (min-width: 1280px) {
  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Order */
.order-first {
  order: -9999;
}

/* Professional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(204, 255, 51, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(204, 255, 51, 0.6);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile Menu Styles */
#mobile-menu {
  background-color: var(--vs3-dark-gray);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-top: 1px solid var(--vs3-primary);
}

/* Utility Classes */
.pt-4 {
  padding-top: 1rem;
}

.text-black {
  color: #000000;
}

