/* ============================================ */
/* RESET E CONFIGURAÇÕES GLOBAIS               */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0a0a;
  --primary-blue: #1e40af;
  --accent-blue: #3b82f6;
  --accent-orange: #f59e0b;
  --neon-orange: #ff6b35;
  --neon-blue: #00d4ff;
  --text-light: #e2e8f0;
  --text-white: #ffffff;
  --cyber-bg: rgba(0, 0, 0, 0.9);
  --glass-border: rgba(59, 130, 246, 0.3);
  --glow-blue: rgba(59, 130, 246, 0.8);
  --glow-orange: rgba(245, 158, 11, 0.8);
  --glass-bg: rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Orbitron', 'Inter', -apple-system, 'Segoe UI', sans-serif;
  background: #000000;
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(59, 130, 246, 0.03) 2px,
      rgba(59, 130, 246, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(245, 158, 11, 0.03) 2px,
      rgba(245, 158, 11, 0.03) 4px
    );
  pointer-events: none;
  z-index: -10;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: -5;
}

/* ============================================ */
/* HEADER / CABEÇALHO                          */
/* ============================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--cyber-bg);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-blue);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(59, 130, 246, 0.3),
    inset 0 0 120px rgba(59, 130, 246, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  min-height: 80px;
  overflow: visible;
  transition: all 0.3s ease;
}

/* Estado do header quando scrollado */
header.scrolled {
  padding: 15px 40px;
  min-height: 60px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(59, 130, 246, 0.4),
    inset 0 0 60px rgba(59, 130, 246, 0.08);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--accent-orange),
    var(--accent-blue),
    var(--accent-orange),
    transparent);
  animation: cyberpunkScan 4s linear infinite;
}

header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-blue),
    var(--accent-orange),
    transparent);
  animation: glowLine 3s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes glowLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes cyberpunkScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  min-width: 120px;
  position: relative;
  overflow: visible;
}

.logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 45%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.logo:hover::before {
  left: 100%;
  animation: shine 0.8s ease;
}

.logo.auto-shine::before {
  animation: shine 0.8s ease forwards;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: all 0.3s ease;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  /* Efeito Neon Laranja */
  box-shadow:
    0 0 10px rgba(255, 123, 0, 0.5),
    0 0 20px rgba(255, 123, 0, 0.3),
    0 0 30px rgba(255, 123, 0, 0.2),
    0 0 40px rgba(255, 123, 0, 0.1),
    inset 0 0 10px rgba(255, 123, 0, 0.1);
  animation: logoNeonGlow 2s ease-in-out infinite alternate;
}

@keyframes logoNeonGlow {
  0% {
    box-shadow:
      0 0 10px rgba(255, 123, 0, 0.5),
      0 0 20px rgba(255, 123, 0, 0.3),
      0 0 30px rgba(255, 123, 0, 0.2),
      0 0 40px rgba(255, 123, 0, 0.1),
      inset 0 0 10px rgba(255, 123, 0, 0.1);
  }
  100% {
    box-shadow:
      0 0 15px rgba(255, 123, 0, 0.8),
      0 0 30px rgba(255, 123, 0, 0.6),
      0 0 45px rgba(255, 123, 0, 0.4),
      0 0 60px rgba(255, 123, 0, 0.2),
      inset 0 0 15px rgba(255, 123, 0, 0.2);
  }
}

.logo:hover img {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(255, 123, 0, 1),
    0 0 40px rgba(255, 123, 0, 0.8),
    0 0 60px rgba(255, 123, 0, 0.6),
    0 0 80px rgba(255, 123, 0, 0.4),
    inset 0 0 20px rgba(255, 123, 0, 0.3);
  border: 1px solid var(--accent-orange);
}

/* ============================================ */
/* NAVEGAÇÃO PRINCIPAL                         */
/* ============================================ */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20000;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10001;
}

/* ---------- Links do Menu ---------- */
nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 20px;
  border-radius: 6px;
  transition: all 0.4s ease;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 44px;
  gap: 6px;
}

nav ul li a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav ul li a:hover::before {
  width: 80%;
}

nav ul li a:hover {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  border-color: var(--accent-orange);
  box-shadow:
    0 0 30px var(--glow-orange),
    0 0 60px rgba(245, 158, 11, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) skewX(-2deg);
  text-shadow: 0 0 10px var(--neon-orange);
}

nav ul li:hover > a i {
  transform: rotate(180deg);
}

/* ============================================ */
/* DROPDOWN / SUBMENU                          */
/* ============================================ */
nav ul li ul {
  display: none;
  position: fixed;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-blue);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(59, 130, 246, 0.3),
    inset 0 0 40px rgba(59, 130, 246, 0.1);
  padding: 20px 0;
  min-width: 220px;
  border-radius: 8px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

nav ul li ul::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  background: transparent;
}

nav ul li:hover ul {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

nav ul li ul li {
  display: block;
  padding: 0;
  margin: 0;
}

nav ul li ul li a {
  font-size: 13px;
  color: var(--text-light);
  padding: 12px 30px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

nav ul li ul li a::before {
  display: none;
}

nav ul li ul li a:hover {
  color: var(--neon-orange);
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  padding-left: 40px;
  text-shadow: 0 0 10px var(--glow-orange);
  border-left: 3px solid var(--accent-orange);
}

/* ============================================ */
/* AÇÕES DO HEADER (BUSCA E CTA)               */
/* ============================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  min-width: 120px;
  justify-content: flex-end;
  max-width: 250px;
  overflow: hidden;
}

/* ---------- Ícone de Busca ---------- */
.search-icon {
  cursor: pointer;
  color: #1e40af;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(30, 64, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.search-icon i {
  font-size: 16px;
}

.search-icon:hover {
  color: #f59e0b;
  background-color: rgba(245, 158, 11, 0.1);
  transform: scale(1.1);
}

/* ============================================ */
/* MENU MOBILE TOGGLE                          */
/* ============================================ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1e40af;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================ */
/* HERO BANNER MOVIDO PARA banner.css          */
/* ============================================ */

/* ---------- Conteúdo do Banner ---------- */
/* MOVIDO PARA banner.css
.banner-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-content.active {
  display: flex;
  opacity: 1;
} */

/* MOVIDO PARA banner.css
.banner-text {
  flex: 1;
  max-width: 600px;
} */

.banner h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-shadow:
    0 0 30px var(--neon-blue),
    0 0 60px var(--accent-blue),
    3px 3px 0 var(--accent-orange);
  margin: 0;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- CTA Buttons no Banner ---------- */
.banner-cta {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.banner-subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ---------- Imagem/Ícone do Banner ---------- */
/* MOVIDO PARA banner.css
.banner-image {
  flex: 0 0 auto;
  margin-left: 40px;
} */

.wifi-icon {
  font-size: 100px;
  opacity: 0.9;
  animation: bounce 2s infinite;
  color: var(--accent-orange);
  filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.8));
  transition: all 0.5s ease;
}

.banner-content.active .wifi-icon {
  animation: pulse 2s infinite;
}

/* ---------- Dots/Indicadores do Carousel ---------- */
.banner-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  background-color: rgba(255,255,255,0.7);
  transform: scale(1.2);
}

.dot.active {
  background-color: rgba(30, 64, 175, 0.8);
  transform: scale(1.3);
}

.dot.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

/* ============================================ */
/* ANIMAÇÕES                                   */
/* ============================================ */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes slideInLeft {
  0% { 
    opacity: 0;
    transform: translateX(-50px);
  }
  100% { 
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% { 
    opacity: 0;
    transform: translateY(30px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% { 
    opacity: 0;
    transform: translateX(50px);
  }
  100% { 
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes ripple {
  0% { 
    transform: scale(1);
    opacity: 1;
  }
  100% { 
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================ */
/* SEÇÃO DE LOGOS                              */
/* ============================================ */
.logos-section {
  margin-top: 20px;
  position: relative;
}

.logos-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  right: -50px;
  height: 120px;
  background:
    radial-gradient(ellipse at center,
      rgba(255, 107, 53, 0.3) 0%,
      rgba(255, 107, 53, 0.15) 40%,
      rgba(255, 107, 53, 0.08) 70%,
      transparent 100%
    );
  filter: blur(30px);
  z-index: -1;
}

.logos-carousel {
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
  width: calc(200% + 100px);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-width: 250px;
  height: 120px;
  flex-shrink: 0;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  opacity: 0.8;
  transform: translateY(-15px);
}

/* Ajustes específicos para logos pequenos */
.logo-item img[src*="ChatGPT Image 13 de set. de 2025, 00_21_35.png"] {
  width: 120%;
  height: 120%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.logo-item img[src*="digilivro.png"] {
  width: 130%;
  height: 130%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.logo-item:hover img {
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 20px rgba(255, 107, 53, 0.8))
    drop-shadow(0 0 40px rgba(255, 107, 53, 0.6))
    drop-shadow(0 0 60px rgba(255, 107, 53, 0.4));
  transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logos-section {
    margin-top: 15px;
  }

  .logo-item {
    min-width: 180px;
    padding: 0 25px;
    height: 80px;
  }

  .logos-track {
    animation-duration: 20s;
  }
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    background-position: 100% 50%;
    transform: translate(-50%, -50%) scale(1.02);
  }
  50% {
    background-position: 100% 100%;
    transform: translate(-50%, -50%) scale(1);
  }
  75% {
    background-position: 0% 100%;
    transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    background-position: 0% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* DESKTOP - Prioridade máxima */
@media screen and (min-width: 769px) {

}

/* ---------- Conteúdo do Card ---------- */

/* ---------- Divisor ---------- */
.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 0 12px;
}

/* ---------- Badges ---------- */

/* ---------- Botão CTA ---------- */

/* ---------- Animação FadeInUp ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================ */
/* MEDIA QUERIES - RESPONSIVIDADE              */
/* ============================================ */

/* ---------- Tablets (1024px) ---------- */
@media (max-width: 1024px) {
  header {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  nav ul {
    gap: 25px;
  }
  
  nav ul li a {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .banner h1 {
    font-size: 52px;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-content.active {
    display: flex;
  }

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

  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .banner-image {
    margin-left: 0;
  }
}

/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
    padding: 6px 10px;
  }
  
  nav {
    display: none;
  }
  
  .mobile-toggle {
    display: none !important;
  }
  
  .banner {
    height: 400px;
  }

  .banner h1 {
    font-size: 42px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  /* Video responsivo em tablets */
  .banner-video {
    min-width: 120%;
    min-height: 120%;
  }
  
  .wifi-icon {
    font-size: 80px;
  }

  .container {
    padding: 0 16px;
  }

}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  
}

}

/* ---------- Mobile Pequeno (480px) ---------- */
@media (max-width: 480px) {
  .banner h1 {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 14px;
  }

  /* Video responsivo em mobile */
  .banner-video {
    min-width: 150%;
    min-height: 150%;
  }
  
  .header-actions {
    min-width: auto;
    max-width: 120px;
    gap: 8px;
  }

  .logo img {
    height: 35px;
    padding: 4px 8px;
  }

}

/* ============================================ */
/* SEÇÃO: CENTRAL DO CLIENTE                   */
/* ============================================ */

.central-cliente-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.central-cliente-section::before {
  content: '★';
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 2rem;
  color: rgba(249, 115, 22, 0.3);
  animation: twinkle 4s ease-in-out infinite;
}

.central-cliente-section::after {
  content: '✦';
  position: absolute;
  bottom: 30%;
  left: 10%;
  font-size: 1.5rem;
  color: rgba(249, 115, 22, 0.4);
  animation: twinkle 3s ease-in-out infinite 0.5s;
}

/* Estrelas adicionais */
.central-container::before {
  content: '✧ ★ ✦ ✧ ★ ✦ ★ ✧ ✦ ★ ✧ ✦';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  z-index: 1;
  background-image:
    radial-gradient(2px 2px at 15% 20%, rgba(249, 115, 22, 0.6), transparent),
    radial-gradient(2px 2px at 85% 15%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(1px 1px at 25% 80%, rgba(249, 115, 22, 0.5), transparent),
    radial-gradient(1px 1px at 75% 75%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(2px 2px at 45% 25%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(1px 1px at 65% 85%, rgba(249, 115, 22, 0.6), transparent),
    radial-gradient(2px 2px at 10% 60%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(249, 115, 22, 0.5), transparent),
    radial-gradient(1px 1px at 30% 10%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(249, 115, 22, 0.5), transparent),
    radial-gradient(1px 1px at 20% 40%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(1px 1px at 80% 80%, rgba(249, 115, 22, 0.4), transparent);
  animation: sparkle 8s ease-in-out infinite;
}

.central-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image:
    radial-gradient(1px 1px at 5% 30%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(2px 2px at 95% 70%, rgba(249, 115, 22, 0.5), transparent),
    radial-gradient(1px 1px at 35% 5%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(1px 1px at 55% 95%, rgba(249, 115, 22, 0.6), transparent),
    radial-gradient(2px 2px at 15% 90%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(1px 1px at 85% 10%, rgba(249, 115, 22, 0.5), transparent),
    radial-gradient(1px 1px at 40% 50%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(2px 2px at 60% 30%, rgba(249, 115, 22, 0.4), transparent);
  animation: sparkle 6s ease-in-out infinite 2s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  25% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  75% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

.central-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header da Seção */
.central-header {
  text-align: center;
  margin-bottom: 60px;
}

.central-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.central-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #f97316, #3b82f6);
  border-radius: 2px;
}

.central-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Layout Principal */
.central-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

/* Coluna de Informações */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* CTA Card */

.download-section {
  margin-top: 24px;
}

.download-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.download-btn.google-play {
  background: #1a73e8;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.download-btn i {
  font-size: 1.4rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.btn-store {
  font-size: 1rem;
  font-weight: 600;
}

/* Coluna da Imagem */
.image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  max-width: 100%;
}

.central-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Responsividade */
@media (max-width: 968px) {
  .central-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .image-column {
    order: -1;
  }

  .central-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .central-cliente-section {
    padding: 60px 0;
  }

  .central-container {
    padding: 0 16px;
  }

  .central-header {
    margin-bottom: 40px;
  }

  .central-title {
    font-size: 2.2rem;
  }

  .central-subtitle {
    font-size: 1.1rem;
  }

  .info-card,

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .central-title {
    font-size: 1.8rem;
  }

}

/* ============================================ */
/* SEÇÃO: INTERNET DE OUTRO PLANETA            */
/* ============================================ */

.space-section {
  min-height: 35vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(30, 64, 175, 0.8)), url('../img/Large jpeg_Universe_Bkg_1_D.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.space-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 40% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  animation: cosmicGlow 8s ease-in-out infinite;
}

@keyframes cosmicGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.space-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ---------- Header Centralizado ---------- */
.space-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.space-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  justify-items: start;
}

/* ---------- Conteúdo de Texto ---------- */
.space-text {
  color: white;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.space-title {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--neon-blue);
  margin-bottom: 10px;
  -webkit-text-stroke: 1px var(--neon-blue);
  text-stroke: 1px var(--neon-blue);
  animation: neonWave 2s ease-in-out infinite;
}

.space-title i {
  color: #60a5fa;
  margin-right: 15px;
  animation: rocketFloat 2s ease-in-out infinite;
}

/* Efeito Flicker (piscando como neon real) */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    -webkit-text-stroke: 1px var(--neon-blue);
    filter: drop-shadow(0 0 3px var(--neon-blue))
            drop-shadow(0 0 6px var(--neon-blue));
  }
  20%, 24%, 55% {
    -webkit-text-stroke: 1px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 1px rgba(0, 212, 255, 0.3));
  }
  22% {
    -webkit-text-stroke: 1px rgba(0, 212, 255, 0.1);
    filter: drop-shadow(0 0 0px rgba(0, 212, 255, 0.1));
  }
}

/* Efeito Wave (onda que passa pelo texto) */
@keyframes neonWave {
  0% { filter: drop-shadow(-20px 0 6px var(--neon-blue)); }
  50% { filter: drop-shadow(0 0 8px var(--neon-blue)); }
  100% { filter: drop-shadow(20px 0 6px var(--neon-blue)); }
}

/* Outras opções que você pode trocar:

// Efeito Glow crescente
@keyframes neonGlow {
  0% { filter: drop-shadow(0 0 2px var(--neon-blue)); }
  50% { filter: drop-shadow(0 0 12px var(--neon-blue)) drop-shadow(0 0 20px var(--neon-blue)); }
  100% { filter: drop-shadow(0 0 2px var(--neon-blue)); }
}

// Efeito Shimmer (brilho que passa)
@keyframes neonShimmer {
  0% { filter: drop-shadow(0 0 3px var(--neon-blue)) hue-rotate(0deg); }
  50% { filter: drop-shadow(0 0 6px var(--neon-blue)) hue-rotate(20deg); }
  100% { filter: drop-shadow(0 0 3px var(--neon-blue)) hue-rotate(0deg); }
}

Para trocar, substitua 'neonFlicker' por: neonWave, neonGlow, ou neonShimmer
*/

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

.space-subtitle {
  font-size: 16px;
  color: #e2e8f0;
  margin-bottom: 0;
  opacity: 0.9;
  font-style: italic;
}

/* ---------- Features Espaciais ---------- */
.space-features {
  display: grid;
  gap: 10px;
  margin-bottom: 15px;
}

.space-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
}

.space-feature:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.feature-icon i {
  color: white;
  font-size: 16px;
}

.feature-content h3 {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.feature-content p {
  color: #e2e8f0;
  line-height: 1.4;
  margin: 0;
  font-size: 12px;
  text-align: left;
}

/* ---------- Estatísticas Espaciais ---------- */
.space-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.stat-item {
  text-align: center;
  flex-shrink: 0;
}

.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
  margin-bottom: 2px;
}

.stat-label {
  color: #cbd5e1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- CTA Espacial ---------- */
.space-cta {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #6366f1);
  background-size: 200% 200%;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.5);
  animation: buttonPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}

.space-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(30, 64, 175, 0.7);
  background-position: 100% 0;
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(30, 64, 175, 0.5); }
  50% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
}

/* ---------- Visual do Astronauta ---------- */
.space-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.astronaut-container {
  position: relative;
  width: 550px;
  height: 550px;
}

.astronaut-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
  animation: astronautFloat 4s ease-in-out infinite;
}

@keyframes astronautFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* ---------- Ondas de Sinal ---------- */
.floating-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
}

.signal-wave {
  position: absolute;
  border: 2px solid rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  animation: signalPulse 3s ease-out infinite;
}

.wave-1 {
  width: 250px;
  height: 250px;
  top: 175px;
  left: 175px;
  animation-delay: 0s;
}

.wave-2 {
  width: 400px;
  height: 400px;
  top: 100px;
  left: 100px;
  animation-delay: 1s;
}

.wave-3 {
  width: 550px;
  height: 550px;
  top: 25px;
  left: 25px;
  animation-delay: 2s;
}

@keyframes signalPulse {
  0% {
    opacity: 1;
    transform: scale(0.3);
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* ---------- Responsividade ---------- */
@media (max-width: 1024px) {
  .space-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    justify-items: center;
  }
  
  .space-text {
    text-align: center;
  }
  
  .astronaut-container {
    width: 400px;
    height: 400px;
  }
  
  .space-stats {
    justify-content: center;
  }
  
  .space-features {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .space-section {
    padding: 40px 0;
    background-attachment: scroll;
  }
  
  .space-content {
    gap: 20px;
  }
  
  .space-features {
    gap: 8px;
    max-width: 100%;
  }
  
  .space-feature {
    padding: 10px;
    gap: 10px;
  }
  
  .space-stats {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .astronaut-container {
    width: 320px;
    height: 320px;
  }
  
  .floating-elements {
    width: 400px;
    height: 400px;
  }
  
  .feature-content h3 {
    font-size: 13px;
  }
  
  .feature-content p {
    font-size: 11px;
  }
}

/* ============================================ */
/* ANIMAÇÕES CYBERPUNK                        */
/* ============================================ */

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px var(--glow-blue),
      0 0 40px var(--glow-orange);
  }
  50% {
    box-shadow: 
      0 0 40px var(--neon-orange), 
      0 0 80px var(--glow-blue),
      0 0 120px var(--glow-orange);
  }
}

@keyframes cyberpunkScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes glitchEffect {
  0%, 100% {
    text-shadow: 
      2px 0 var(--neon-blue),
      -2px 0 var(--neon-orange);
  }
  25% {
    text-shadow: 
      -2px 0 var(--neon-blue),
      2px 0 var(--neon-orange);
  }
  50% {
    text-shadow: 
      2px 2px var(--neon-blue),
      -2px -2px var(--neon-orange);
  }
}

@keyframes dataStream {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes holographicSheen {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gridFlow {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Efeitos de partículas */
.particle-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, var(--accent-blue) 1px, transparent 1px),
    radial-gradient(circle, var(--accent-cyan) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: dataStream 20s linear infinite;
  opacity: 0.1;
  pointer-events: none;
}

/* ============================================ */
/* SEÇÃO DE AVALIAÇÕES GOOGLE                  */
/* ============================================ */

.google-reviews-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-title {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.reviews-title i {
  color: #ff7b00;
  margin-right: 15px;
  text-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.rating-stars {
  display: flex;
  gap: 5px;
}

.rating-stars i {
  color: #ffd700;
  font-size: 1.5em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: starTwinkle 2s ease-in-out infinite alternate;
}

.rating-number {
  color: #ffffff;
  font-size: 2.2em;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.rating-label {
  color: #b0b6c3;
  font-size: 1.1em;
}

.testimonials-carousel {
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #ff7b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 123, 0, 0.3);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 123, 0, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #ff7b00);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-avatar i {
  color: white;
  font-size: 0.9em;
}

.user-info {
  flex: 1;
}

.user-name {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 3px;
}

.user-stars {
  display: flex;
  gap: 2px;
}

.user-stars i {
  color: #ffd700;
  font-size: 0.7em;
}

.testimonial-text {
  color: #e0e4ea;
  line-height: 1.4;
  font-size: 0.85em;
  margin-bottom: 10px;
  font-style: italic;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testimonial-text::before {
  content: '"';
  color: #ff7b00;
  font-size: 1.2em;
  font-weight: bold;
}

.testimonial-text::after {
  content: '"';
  color: #ff7b00;
  font-size: 1.2em;
  font-weight: bold;
}

.testimonial-date {
  color: #8a9099;
  font-size: 0.75em;
  margin-top: auto;
}

.reviews-cta {
  text-align: center;
}

.reviews-button {
  background: linear-gradient(135deg, #007bff, #0056cc);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.reviews-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056cc, #003d99);
}

.reviews-button i:first-child {
  font-size: 1.2em;
}

.reviews-button i:last-child {
  font-size: 0.9em;
}

/* Animações */
@keyframes starTwinkle {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Responsividade para Reviews */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 2em;
  }

  .rating-number {
    font-size: 1.8em;
  }

  .testimonials-track {
    gap: 20px;
  }

  .testimonial-card {
    padding: 15px;
    width: 200px;
    height: 200px;
  }

  .google-rating {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================ */
/* RODAPÉ                                       */
/* ============================================ */

.main-footer {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 123, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-section h3 {
  color: #ff7b00;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 123, 0, 0.3);
}

/* Seção da Marca */
.footer-brand .footer-logo img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;

  /* Efeito Neon Laranja */
  filter:
    brightness(1.2)
    contrast(1.1)
    drop-shadow(0 0 8px rgba(255, 123, 0, 0.7))
    drop-shadow(0 0 16px rgba(255, 123, 0, 0.5))
    drop-shadow(0 0 24px rgba(255, 123, 0, 0.3));

  animation: logoNeonGlow 2.5s ease-in-out infinite alternate;
}

@keyframes logoNeonGlow {
  0% {
    filter:
      brightness(1.2)
      contrast(1.1)
      drop-shadow(0 0 8px rgba(255, 123, 0, 0.7))
      drop-shadow(0 0 16px rgba(255, 123, 0, 0.5))
      drop-shadow(0 0 24px rgba(255, 123, 0, 0.3));
  }
  100% {
    filter:
      brightness(1.4)
      contrast(1.2)
      drop-shadow(0 0 12px rgba(255, 123, 0, 0.9))
      drop-shadow(0 0 24px rgba(255, 123, 0, 0.7))
      drop-shadow(0 0 36px rgba(255, 123, 0, 0.5));
  }
}

.footer-brand .footer-logo img:hover {
  transform: scale(1.05);
  filter:
    brightness(1.5)
    contrast(1.3)
    drop-shadow(0 0 15px rgba(255, 123, 0, 1))
    drop-shadow(0 0 30px rgba(255, 123, 0, 0.8))
    drop-shadow(0 0 45px rgba(255, 123, 0, 0.6));
}

.footer-description {
  color: #b0b6c3;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95em;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #ff7b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
}

/* Links do Footer */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e4ea;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.footer-links a:hover {
  color: #ff7b00;
  transform: translateX(5px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #ff7b00;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 8px;
}

/* Seção de Contato */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-contact .contact-item i {
  color: #ff7b00;
  font-size: 1.2em;
  margin-top: 2px;
  min-width: 20px;
}

.contact-label {
  display: block;
  color: #8a9099;
  font-size: 0.85em;
  margin-bottom: 3px;
}

.contact-value {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #ff7b00;
}

/* Rodapé Inferior */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  color: #8a9099;
  margin: 0 0 10px 0;
  font-size: 0.9em;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal a {
  color: #b0b6c3;
  text-decoration: none;
  font-size: 0.85em;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff7b00;
}

.footer-legal span {
  color: #666;
}

.footer-developer {
  font-size: 0.85em;
  color: #8a9099;
}

.developer-link {
  color: #ff7b00;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.developer-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 123, 0, 0.5);
}

/* ============================================ */
/* NOVO LAYOUT FOOTER CENTRALIZADO             */
/* ============================================ */

/* Conteúdo Centralizado do Footer */
.footer-bottom .footer-container {
  max-width: none;
  width: 100%;
  text-align: center;
  padding: 25px 20px;
}

.footer-bottom-content-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: auto;
}

.footer-copyright-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.footer-copyright-centered p {
  color: #e0e4ea;
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

.footer-legal-centered {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-centered a {
  color: #b0b6c3;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.footer-legal-centered a:hover {
  color: #ff7b00;
  background: rgba(255, 123, 0, 0.1);
  transform: translateY(-2px);
}

.footer-legal-centered span {
  color: #666;
  font-weight: bold;
}

.footer-developer-centered {
  margin-top: 10px;
  font-size: 0.9em;
  color: #8a9099;
}

.footer-developer-centered .developer-link {
  color: #ff7b00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 3px;
}

.footer-developer-centered .developer-link:hover {
  color: #ffffff;
  background: rgba(255, 123, 0, 0.2);
  text-shadow: 0 0 8px rgba(255, 123, 0, 0.6);
  transform: translateY(-1px);
}

/* Responsividade Footer Centralizado */
@media (max-width: 768px) {
  .footer-legal-centered {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal-centered span {
    display: none;
  }

  .footer-copyright-centered p {
    font-size: 0.9em;
  }

  .footer-developer-centered {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .footer-legal-centered a {
    font-size: 0.8em;
    padding: 3px 6px;
  }
}

/* Responsividade do Rodapé Original */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 0;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .header-actions {
    max-width: 90px;
    gap: 5px;
  }

  .search-icon {
    font-size: 14px;
  }

  .logo img {
    height: 32px;
    padding: 3px 6px;
  }
}

/* ============================================ */
/* RODAPÉ                                      */
/* ============================================ */
.footer-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--neon-orange));
  border-radius: 1px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
}

.footer-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-info-item i {
  color: var(--accent-orange);
  width: 16px;
  font-size: 14px;
}

.phone-link {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  opacity: 1;
}

.footer-links span {
  color: var(--text-light);
  opacity: 0.3;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.7;
}

.developer-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.developer-link:hover {
  color: var(--neon-orange);
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.developer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.developer-link:hover::after {
  width: 100%;
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-credits {
    order: -1;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
