/* Estilos Principais - Infinite Marketing - Versão Futurística */

:root {
  /* Cores principais */
  --primary-color: #FF5500;
  --primary-light: #FF7733;
  --primary-dark: #CC4400;
  --secondary-color: #9900FF;
  --secondary-light: #BB33FF;
  --secondary-dark: #7700CC;
  --dark-bg: #0A0A14;
  --darker-bg: #05050A;
  --card-bg: #12121E;
  --text-color: #F0F2FF;
  --text-secondary: #A0A3BD;
  
  /* Efeitos */
  --neon-primary: 0 0 5px rgba(255, 85, 0, 0.5), 0 0 10px rgba(255, 85, 0, 0.3), 0 0 15px rgba(255, 85, 0, 0.1);
  --neon-secondary: 0 0 5px rgba(153, 0, 255, 0.5), 0 0 10px rgba(153, 0, 255, 0.3), 0 0 15px rgba(153, 0, 255, 0.1);
  --glass-effect: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --neo-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(255, 255, 255, 0.03);
  --neo-shadow-inset: inset 3px 3px 5px rgba(0, 0, 0, 0.5), inset -3px -3px 5px rgba(255, 255, 255, 0.03);
  
  /* Dimensões */
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --container-width: 1200px;
}

/* Reset e Estilos Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Exo 2', 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia Futurística */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 2rem;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Efeitos de Texto */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-neon {
  text-shadow: var(--neon-primary);
  color: var(--primary-color);
}

.text-neon-secondary {
  text-shadow: var(--neon-secondary);
  color: var(--secondary-color);
}

.text-center {
  text-align: center;
}

/* Cursor Personalizado */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background 0.3s;
  display: none;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-size: 1.2rem;
  letter-spacing: 3px;
  animation: pulse 1.5s infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 15px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text .infinite {
  color: var(--primary-color);
  text-shadow: var(--neon-primary);
}

.logo-text .marketing {
  color: var(--text-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: 20px;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  box-shadow: var(--neon-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(255, 85, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(255, 85, 0, 0.1);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -2;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: var(--neon-primary);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.city-model-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

/* Seções Gerais */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.bg-dark {
  background: var(--darker-bg);
}

.bg-gradient {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
}

.glass-card {
  background: rgba(18, 18, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.neo-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
  transition: all 0.3s ease;
}

.neo-card:hover {
  transform: translateY(-5px);
}

/* Grids */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Sobre Nós */
.about-section {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Desafios */
.challenges-section {
  background: var(--darker-bg);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.challenge-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
}

.challenge-card:hover {
  transform: translateY(-10px);
}

.challenge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--neon-primary);
}

.challenge-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.challenge-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.challenges-cta {
  text-align: center;
  margin-top: 50px;
}

/* Solução */
.solution-section {
  position: relative;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-image {
  position: relative;
}

.solution-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pillar-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
}

.pillar-item:hover {
  transform: translateY(-10px);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--neon-primary);
}

.pillar-icon i {
  font-size: 1.8rem;
  color: var(--text-color);
}

.solution-cta {
  text-align: center;
  margin-top: 50px;
}

/* Serviços */
.services-section {
  position: relative;
}

.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.service-tab {
  padding: 15px 30px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.service-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-main-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-details {
  padding: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-process {
  margin-top: 50px;
}

.service-process h4 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
}

.process-step {
  text-align: center;
  width: 22%;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--neon-primary);
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.process-step h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-results {
  margin-top: 50px;
}

.service-results h4 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-item {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--neo-shadow);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 85, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.result-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.result-text h5 {
  font-size: 1.1rem;
  margin: 0;
}

.case-study {
  margin-top: 30px;
  text-align: center;
}

.case-study blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
}

/* Pacotes */
.packages-section {
  background: var(--darker-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--neo-shadow);
}

.package-card.featured {
  transform: scale(1.05);
  border: 1px solid var(--primary-color);
  box-shadow: var(--neon-primary);
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--primary-color);
  color: var(--text-color);
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--neon-primary);
}

.package-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 5px;
}

.package-body {
  padding: 30px;
}

.package-features {
  margin-bottom: 30px;
}

.package-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.package-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.package-cta {
  text-align: center;
}

/* Processo */
.process-section {
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--neon-primary);
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Depoimentos */
.testimonials-section {
  background: var(--darker-bg);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  display: block; /* Alterado para o texto ocupar todo o espaço */
  padding: 40px; /* Adicionado padding para um melhor espaçamento interno */
  text-align: center; /* Centraliza o texto para um visual mais limpo sem a imagem */
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
}

.testimonial-image {
  height: 100%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  padding: 30px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(255, 85, 0, 0.2);
}

.testimonial-text p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.testimonial-navigation {
  margin-top: 30px;
  text-align: center;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary-color);
  box-shadow: var(--neon-primary);
}

/* Contato */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--neo-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-family: 'Exo 2', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--neo-shadow);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 85, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.info-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
}

.social-link i {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--neon-primary);
}

.social-link:hover i {
  color: var(--text-color);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 15px;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@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);
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-up {
  transform: translateY(30px);
}

.fade-up.animated {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-30px);
}

.fade-left.animated {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(30px);
}

.fade-right.animated {
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Utilidades */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

/* Partículas */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  33% {
    transform: translateY(-50px) translateX(50px) rotate(120deg);
  }
  66% {
    transform: translateY(50px) translateX(-50px) rotate(240deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid, .solution-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    order: -1;
  }
  
  .process-steps {
    flex-wrap: wrap;
  }
  
  .process-step {
    width: 45%;
    margin-bottom: 30px;
  }
  
  .testimonial-content {
    grid-template-columns: 1fr;
  }
  
  .testimonial-image {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    margin: 0 0 30px 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-step {
    width: 100%;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-content {
    width: 100%;
    margin: 0 0 30px 0;
  }
  
  .timeline-icon {
    left: 20px;
    transform: none;
  }
  
  .process-timeline::before {
    left: 20px;
    transform: none;
  }

/* Ajuste para os ícones da seção 'Como Trabalhamos' em telas menores */
.timeline-icon {
    width: 50px;      /* Reduz a largura do círculo de 60px para 50px */
    height: 50px;     /* Reduz a altura do círculo de 60px para 50px */
}

.timeline-icon i {
    font-size: 1.2rem;  /* Reduz o tamanho do ícone de 1.5rem para 1.2rem */
}  

  .timeline-content {
    padding-left: 60px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit {
    grid-column: span 1;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .service-tab {
    width: 100%;
    text-align: center;
  }
}

/* Estilo para as opções do menu de seleção do formulário */
.form-group select option {
    background: black;
    color: white;
}

/* COLE O CÓDIGO DE ESTILO DO WHATSAPP AQUI */
            /* Estilo para o Botão Flutuante do WhatsApp */
            .whatsapp-float-button {
              position: fixed;
              width: 60px;
              height: 60px;
              bottom: 30px;
              right: 30px;
              background-color: #25D366;
              color: #FFF;
              border-radius: 50px;
              text-align: center;
              font-size: 30px;
              box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
              z-index: 1000;
              display: flex;
              align-items: center;
              justify-content: center;
              transition: transform 0.3s ease;
            }

            .whatsapp-float-button:hover {
              transform: scale(1.1);
            }
/* Estilos do Holograma */
.hologram-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 1;
}

.hologram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(-20deg);
}

.hologram-icon {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  animation: hologram-pulse 2s infinite alternate;
}

.hologram-icon i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.hologram-icon:nth-child(2n) {
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.hologram-icon:nth-child(2n) i {
  color: var(--secondary-color);
  text-shadow: 0 0 10px var(--secondary-color);
}

@keyframes hologram-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}