/* ==================== AZUREWEB - STYLE.CSS (REVISADO PELO ORÁCULO) ==================== */
/* OBJETIVO: CONSISTÊNCIA, ROBUSTEZ, MENOS CONFLITOS (Z-INDEX / !IMPORTANT / RESPONSIVO) */


/* ======================================== */
/* ========== XX/XX/XX AS XX:XX =========== */
/* ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-dark: #061728;
  --primary-teal: #1a7b7a;
  --primary-teal-light: #55a5a0;
  --accent-orange: #f89c31;
  --accent-orange-hover: #e08520;
  --text-light: #ecebe9;
  --text-gray: #9ca3af;
  --bg-dark: #0a1929;
  --bg-darker: #020814;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --container-max: 1280px;
  --section-padding: 80px;
  --transition: all 0.3s ease;

  /* ESCALA DE CAMADAS (EVITA "GUERRA" DE Z-INDEX) */
  --z-header: 1000;
  --z-menu-mobile: 1100;
  --z-floating: 1200;
  --z-cookies: 2000;
  --z-scroll-indicator: 900;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-darker);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* TRAVA DE ROLAGEM (COMPATÍVEL COM JS QUE DEFINE body.style.top) */
body.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--section-padding) 0; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ==================== HEADER & NAV (DESKTOP) ==================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background-color: rgba(6, 23, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-header);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background-color: rgba(6, 23, 40, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-text { color: #FABE7A; }
.logo-accent { color: var(--primary-teal-light); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item { position: relative; }

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal-light);
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.dropdown-arrow { transition: transform 0.3s ease; }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown Menu Desktop */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(6, 23, 40, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(85, 165, 160, 0.2);
  border-radius: 8px;
  min-width: 260px;
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: var(--z-header);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  color: var(--text-gray);
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-teal-light);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--text-light);
  background-color: rgba(26, 123, 122, 0.15);
  padding-left: 1.75rem;
}

.dropdown-menu a:hover::before { transform: scaleY(1); }

.nav-actions { display: flex; gap: 1rem; }

/* Botão Mobile Escondido no Desktop */
.btn-mobile-menu, .nav-item-mobile-button { display: none; }

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary { background-color: var(--accent-orange); color: white; }

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 156, 49, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-teal-light);
  color: var(--primary-teal-light);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-teal);
  color: white;
  border-color: var(--primary-teal);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover { background-color: white; color: var(--primary-dark); }

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.btn-full-orange {
  background-color: var(--accent-orange);
  color: white;
  width: 100%;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
}

.btn-full-orange:hover {
  background-color: var(--accent-orange-hover);
  box-shadow: 0 0 15px rgba(248, 156, 49, 0.4);
}

/* ==================== HERO ==================== */
/* ==================== HERO (VIDEO NATIVO SEM CORTES) ==================== */
.hero {
  position: relative;
  width: 100%;
  
  /* A SOLUÇÃO MATEMÁTICA: */
  /* Removemos a altura fixa (100vh) e forçamos a proporção exata do vídeo */
  height: auto;
  aspect-ratio: 752 / 416; /* Isso garante que 100% do vídeo apareça */
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background-color: #061728;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Como o pai tem o tamanho exato do vídeo, o cover não corta nada */
  object-fit: cover;
  
  z-index: 0;
  /* BLINDAGEM: Isso impede que ícones de 'Play/Pause' do navegador apareçam */
  pointer-events: none; 
}

/* AJUSTE DE SEGURANÇA MOBILE */
/* No celular, o vídeo ficaria muito fino, então autorizamos o corte apenas no mobile */
@media (max-width: 900px) {
  .hero {
    aspect-ratio: unset; /* Desliga a proporção fixa */
    min-height: 100vh;   /* Volta para tela cheia no celular para caber o texto */
  }
}

/* ==========================================================================
   REGRA MESTRA DE FILTRO DE VIDRO (CONSISTÊNCIA TOTAL V1.0 - ORÁCULO)
   Substitui: .hero-overlay e .azure-glass-overlay antigos
   ========================================================================== */
.azure-glass-overlay, .hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  
  /* A FÓRMULA DO VIDRO CRISTALINO (Tom Claro da pág. Nossa Empresa) */
  background: linear-gradient(
      135deg, 
      rgba(6, 23, 40, 0.4) 0%,      /* Azul Profundo (Topo) - Transparencia 40% */
      rgba(26, 123, 122, 0.3) 100%  /* Verde Teal (Base) - Transparencia 30% */
  );
  
  pointer-events: none; /* Permite clique no elemento abaixo se necessario */
  z-index: 1;
  border-radius: inherit;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-title-main {
  display: block;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* ==================== COMPONENTES (STATS, SERVICES, ETC) ==================== */
.stats {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(26, 123, 122, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(85, 165, 160, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal-light);
  background: rgba(26, 123, 122, 0.2);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-teal-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-gray); }

/* Services */
.services { background-color: var(--primary-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 123, 122, 0.1);
  border-color: var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.service-icon { width: 60px; height: 60px; margin-bottom: 1.5rem; color: var(--primary-teal-light); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-light); }
.service-card p { color: var(--text-gray); line-height: 1.8; }

/* Features */
.features {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  /* 1. Borda Neon Ciano (Identidade Visual V4.0) */
  border: 1px solid #72efea; 

  /* 2. Explosão de Luz (Glow Intenso) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.8),  /* Núcleo */
    0 0 50px rgba(114, 239, 234, 0.6); /* Aura */

  /* 3. Comportamento do Ícone (Acende em Ciano) */
  color: #72efea; 
  background: rgba(6, 23, 40, 0.95);

  /* 4. Levitação (Sem girar, apenas sobe elegante) */
  transform: translateY(-10px) scale(1.1); 
}

.feature-icon svg { width: 100%; height: 100%; }
.feature-item h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-light); }
.feature-item p { color: var(--text-gray); line-height: 1.8; }

/* Locations */
.locations { 
  background-color: var(--primary-dark); 
  /* A linha de borda foi removida para unificar totalmente */
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* ==================== PADRÃO VISUAL V4.0: DATA CENTERS (NEON BOX) ==================== */
/* Unificando os cards de localização com o resto do site */

.location-card:hover {
  /* 1. Borda Neon Ciano */
  border-color: #72efea !important;

  /* 2. Fundo Escuro Profundo (Para destacar o brilho) */
  background-color: rgba(6, 23, 40, 0.95) !important;

  /* 3. Explosão de Luz (Glow) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6), 
    0 0 50px rgba(114, 239, 234, 0.4) !important;

  /* 4. Levitação Suave */
  transform: translateY(-10px) scale(1.02) !important;
  
  z-index: 10; /* Garante prioridade visual */
}

.location-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-teal-light);
}

.location-card p { color: var(--text-gray); margin-bottom: 1.5rem; }

.location-specs { display: flex; gap: 1rem; flex-wrap: wrap; }

.location-specs span {
  padding: 0.5rem 1rem;
  background: rgba(248, 156, 49, 0.2);
  border: 1px solid var(--accent-orange);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-orange);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==================== PÁGINAS ESPECÍFICAS ==================== */
.categoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.categoria-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--primary-dark);
  border: 1px solid rgba(85, 165, 160, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.categoria-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.categoria-header {
  background-color: var(--primary-teal);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.categoria-header h3 { color: white; font-size: 1.25rem; font-weight: 700; margin: 0; }

.categoria-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.categoria-body p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.categoria-body .btn-primary { width: 100%; }

/* SO */
.so-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.so-card {
  background: rgba(6, 23, 40, 0.8);
  border: 1px solid rgba(85, 165, 160, 0.3);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === MELHORIA ORÁCULO: NEON TURBO V4.0 (SISTEMAS OPERACIONAIS) === */
.so-card:hover {
  /* 1. Borda Neon Ciano */
  border-color: #72efea !important; 
  
  /* 2. Fundo Escuro para Máximo Contraste */
  background-color: rgba(6, 23, 40, 0.95) !important;

  /* 3. Explosão de Luz (Glow Ciano/Verde) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6), 
    0 0 50px rgba(114, 239, 234, 0.4) !important;

  /* 4. Levitação e Escala Interativa */
  transform: translateY(-10px) scale(1.02) !important;
  
  z-index: 10;
}

/* Acende o título do SO ao interagir */
.so-card:hover h3 {
  color: #72efea !important;
  text-shadow: 0 0 10px rgba(114, 239, 234, 0.5);
  transition: all 0.3s ease;
}

.so-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.so-icon img, .so-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: currentColor;
}

.so-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.so-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.1rem;
  flex-grow: 1;
  margin-bottom: 2rem;
  max-width: 400px;
}

.so-card .btn-primary, .so-card .btn-full-orange { width: 100%; margin-top: auto; }

/* PRICING */
.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  padding-top: 1cm;     /* DESCE OS BLOCOS 1 CM */
  position: relative;   /* PERMITE Z-INDEX FUNCIONAR */
  z-index: 5;           /* GARANTE QUE NÃO FIQUE ATRÁS DO BANNER/OVERLAY */
}

@media (min-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(5, 1fr); }
}

.pricing-card {
  background: rgba(6, 23, 40, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: #72efea;
  background: rgba(6, 23, 40, 0.85);
  box-shadow:
    0 0 35px rgba(26, 123, 122, 0.55),
    0 0 18px rgba(26, 123, 122, 0.35);
}

.pricing-card.recommended, .pricing-card.popular {
  border: 2px solid var(--primary-teal);
  box-shadow: 0 0 20px rgba(26, 123, 122, 0.2);
  background: rgba(6, 23, 40, 0.8);
}
/* REFORÇO DE HOVER PARA O CARD "MAIS VENDIDO" */
.pricing-card.recommended:hover, .pricing-card.popular:hover {
  border-color: #72efea; /* Um verde bem claro, quase branco (Neon Aceso) */
  box-shadow: 0 0 50px rgba(26, 123, 122, 0.7); /* Brilho muito mais forte e espalhado */
  transform: translateY(-12px); /* Sobe um pouco mais para dar impacto */
  z-index: 5; /* Garante que ele fique por cima de tudo */
}

.ribbon, .pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-orange);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.pricing-card.custom-quote {
  background-color: #044454;
  border: 2px solid #55a5a0;
  box-shadow: 0 0 20px rgba(26, 123, 122, 0.4);
}

.pricing-card.custom-quote:hover {
  background-color: #156665;
  transform: translateY(-8px);
}

.pricing-card.custom-quote h3,
.pricing-card.custom-quote p,
.pricing-card.custom-quote span { color: white; }

.pricing-header { padding: 2rem 2rem 1.5rem; text-align: center; }

.pricing-header h3, .plan-name {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-teal-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  line-height: 1;
  text-align: center;
}

.vps-big {
  display: block;
  font-family: "Arial Black", "Impact", sans-serif;
  font-size: 3.5rem;
  color: var(--primary-teal-light);
  text-shadow: 4px 4px 0px #000000;
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.vps-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-teal-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-price, .plan-price {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  font-size: 1.25rem;
  color: var(--text-gray);
}

.pricing-price span, .plan-price .amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.pricing-features, .plan-specs {
  list-style: none;
  padding: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features li, .plan-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.pricing-features li strong, .plan-specs li strong { color: var(--text-light); font-weight: 600; }

.pricing-footer { padding: 0 1rem 2rem; }
.pricing-footer .btn-primary { width: 100%; }

/* BANNER PERSONALIZADO */
.custom-page-banner {
  position: relative;
  width: 100vw;
  height: auto;
  min-height: 200px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #0a1929;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
  z-index: 2;
}

/* === MELHORIA ORÁCULO: NEON GLOW NO BANNER DO SERVIDOR === */
.custom-page-banner img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  transition: all 0.5s ease-in-out; /* Transição suave para o brilho */
}

/* EFEITO AO PASSAR O MOUSE: O servidor "acende" e levita */
.custom-page-banner:hover img {
  /* 1. Explosão de Luz Ciano seguindo o desenho do servidor */
  filter: drop-shadow(0 0 15px rgba(114, 239, 234, 0.6)) 
          drop-shadow(0 0 30px rgba(26, 123, 122, 0.4));
  
  /* 2. Levitação sutil para dar profundidade */
  transform: translateY(-5px) scale(1.01);
  
  cursor: pointer;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
  background: linear-gradient(135deg, rgba(6,23,40,0.20) 0%, rgba(26,123,122,0.40) 100%);
  pointer-events: none;
}

.custom-content { padding: 2rem; text-align: center; }
.custom-content h2 { font-family: var(--font-sans); font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
.custom-content p { font-size: 1.1rem; color: #d1d5db; max-width: 800px; margin: 0 auto 2rem auto; line-height: 1.6; }

/* WARNING */
.warning-banner {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 4rem 0 5rem 0;
}

.warning-content { width: 100%; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 20px; }
.warning-content h2 { font-size: 2.5rem; color: white; text-transform: uppercase; margin-bottom: 1.5rem; }
.warning-content p { font-size: 1.2rem; color: #d1d5db; line-height: 1.6; margin: 0 auto; }

/* ABOUT */
.about-main { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-img-wrapper { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.about-img-wrapper img { width: 100%; height: auto; display: block; transition: var(--transition); }
.about-img-wrapper:hover img { transform: scale(1.03); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.value-card { background: rgba(255, 255, 255, 0.05); padding: 2.5rem 2rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; transition: var(--transition); }
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--primary-teal-light); /* MUDADO PARA O VERDE PADRÃO DO SITE */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 5px rgba(85, 165, 160, 0.4)); /* Brilho sutil verde */
}

/* Efeito extra ao passar o mouse no card */
/* ==================== PADRÃO VISUAL V4.0: ÍCONES NOSSA EMPRESA (NEON TURBO) ==================== */
/* Padronização para igualar aos ícones de VPS/Features */

.value-card:hover .value-icon {
  /* 1. Forma e Borda Neon */
  border: 1px solid #72efea;
  border-radius: 50%; /* Garante que o brilho seja um círculo perfeito */
  
  /* 2. Explosão de Luz (Glow) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.8), 
    0 0 50px rgba(114, 239, 234, 0.6);

  /* 3. Cores */
  color: #72efea; /* Ícone acende em Ciano */
  background: rgba(6, 23, 40, 0.95); /* Fundo escuro */

  /* 4. Movimento */
  transform: translateY(-10px) scale(1.1);
}
/* ==================== PADRÃO VISUAL V4.0: CAIXA DOS VALORES (NEON BOX) ==================== */
/* Faz a caixa inteira acender igual aos cards da Home e Filtro */

.value-card:hover {
  /* 1. Borda Neon Ciano */
  border-color: #72efea !important;

  /* 2. Fundo Escuro Profundo (Para o neon brilhar mais) */
  background-color: rgba(6, 23, 40, 0.95) !important;

  /* 3. Explosão de Luz (Glow) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6), 
    0 0 50px rgba(114, 239, 234, 0.4) !important;

  /* 4. Levitação Suave */
  transform: translateY(-10px) scale(1.02) !important;
  
  z-index: 10; /* Garante que fique por cima de tudo */
}

.value-icon svg {
  width: 100%;          /* O ícone ocupa o espaço definido acima */
  height: 100%;
  stroke-width: 1.5;    /* Espessura elegante da linha */
}
/* FOOTER */
.footer {
  background-color: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 { color: var(--primary-teal-light); margin-bottom: 1.5rem; font-size: 1.25rem; }
.footer-section h4:hover {
    color: #72efea !important;
    text-shadow: 0 0 10px rgba(114, 239, 234, 0.8), 0 0 20px rgba(114, 239, 234, 0.4);
    cursor: default;
    transition: all 0.3s ease;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a { color: var(--text-gray); transition: var(--transition); }
.footer-section a:hover { color: var(--primary-teal-light); padding-left: 5px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: var(--text-gray); }
.footer-links { display: flex; gap: 2rem; }

/* ==================== COOKIES / SCROLL INDICATOR / TOP BUTTON ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: #2d2d2d;
  color: white;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: var(--z-cookies);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; font-size: 0.95rem; line-height: 1.6; color: #ffffff; margin: 0; }
.cookie-link { color: var(--accent-orange); text-decoration: underline; font-weight: 600; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.btn-cookie { padding: 0.75rem 2rem; border: none; border-radius: 50px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.btn-accept { background-color: var(--accent-orange); color: white; }
.btn-reject { background-color: transparent; color: white; border: 2px solid white; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL INDICATOR (HOME) */
.scroll-indicator {
  display: flex;
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-scroll-indicator);
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  animation: floatArrow 2s infinite ease-in-out;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: sans-serif;
  opacity: 0.9;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 2px rgba(0, 229, 255, 0.5));
}

@keyframes floatArrow {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -12px); }
}

.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

/* BOTÃO FLUTUANTE TOPO */
.btn-floating-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(6, 23, 40, 0.95);
  border: 2px solid var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal-light);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: var(--z-floating);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  text-decoration: none;
}

.btn-floating-topo.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-floating-topo:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(248, 156, 49, 0.4);
}

.btn-floating-topo svg { width: 24px; height: 24px; stroke-width: 2.5; }

/* ==================== PADRÕES AUXILIARES ==================== */
#box-menu {
  min-height: 80px;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
}

.loading-placeholder { min-height: 50px; }

#topo-pagina {
  position: absolute;
  top: 0;
  width: 100%;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
  :root { --section-padding: 60px; }

  .nav-menu, .nav-actions { display: none; }
  .hero-buttons { flex-direction: column; }
  .about-content, .about-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pricing-grid { grid-template-columns: 1fr; }

  .cookie-content { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-buttons { width: 100%; justify-content: center; }
  .btn-cookie { flex: 1; padding: 0.875rem 1.5rem; font-size: 0.875rem; }

  .custom-page-banner { height: 300px; min-height: 300px; }
  .custom-page-banner img { height: 100%; object-fit: cover; object-position: center center; }
  .banner-overlay { height: 100%; }

  .btn-mobile-menu {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: var(--z-header);
  }

  .hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.3s;
  }

  /* MENU MOBILE ABERTO - USA ALTURA REAL DO HEADER */
  .nav-menu.menu-aberto {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height, 90px);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height, 90px));
    z-index: var(--z-menu-mobile);
    padding-top: 10px;
    padding-bottom: 20px; /* CALÇO REAL (CONSISTENTE) */
    gap: 0;
    background-color: var(--primary-teal);
    overflow-y: auto;
    border-top: 1px solid rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav-menu.menu-aberto .nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* === MELHORIA ORÁCULO: CONTRASTE NEON MOBILE === */
.nav-menu.menu-aberto .nav-item:hover {
  background-color: rgba(2, 8, 20, 0.6); /* Azul Noturno quase preto */
  transition: background-color 0.3s ease;
}

  .nav-menu.menu-aberto .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.75rem 1.5rem;
    gap: 0.25rem;
  }

  .nav-menu.menu-aberto .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-menu.menu-aberto .dropdown-menu.submenu-aberto { display: block; }
  .nav-menu.menu-aberto .nav-link.submenu-ativo .dropdown-arrow { transform: rotate(180deg); }

  .nav-menu.menu-aberto .nav-item-mobile-button {
    display: list-item;
    padding: 15px 20px;
    width: 100%;
    margin: 0;
    background-color: rgba(0,0,0,0.2);
  }

  .nav-menu.menu-aberto .nav-item-mobile-button .btn-primary {
    width: 100%;
    display: block;
    margin: 0;
  }

  #box-menu { min-height: 70px; }

  .btn-floating-topo {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .stats-grid, .services-grid, .features-grid, .locations-grid { grid-template-columns: 1fr; }
}

/* ==================== BOTÃO VOLTAR (PADRÃO) ==================== */
.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 60px;
  margin-bottom: 20px;
  margin-left: 0;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.btn-voltar svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  margin-bottom: 1px;
}

.btn-voltar:hover {
  color: var(--accent-orange);
  transform: translateX(+0px);
}

@media (max-width: 768px) {
  .btn-voltar {
    margin-top: calc(var(--header-height, 90px) + 5px);
    margin-left: 20px;
    margin-bottom: 15px;
  }
}

/* ==================== EFEITO DISSOLVER (BANNER) ==================== */
.banner-fade { animation: fadeInEffect 1.5s ease-in-out forwards; }

@keyframes fadeInEffect {
  from { opacity: 0; filter: blur(5px); }
  to { opacity: 1; filter: blur(0); }
}
/* ==================== FIX DEFINITIVO: TERMOS DE USO (SUMÁRIO + ÂNCORAS) ==================== */
/* OBJETIVO: GARANTIR O LAYOUT DO SUMÁRIO IGUAL AO DAS IMAGENS E EVITAR SOBRESCRITA POR OUTROS BLOCOS */

.legal-content{
  background-color: rgba(6, 23, 40, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 3rem !important;
  margin-bottom: 4rem !important;
}

.legal-title{
  color: var(--primary-teal-light) !important;
  font-size: 1.8rem !important;
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(85, 165, 160, 0.3) !important;
  padding-bottom: 0.5rem !important;
  margin-top: 4rem !important;
  scroll-margin-top: 130px !important;
  text-transform: uppercase !important;
}

.legal-subtitle{
  color: var(--text-light) !important;
  font-size: 1.3rem !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
  scroll-margin-top: 130px !important;
  border-left: 3px solid var(--accent-orange) !important;
  padding-left: 15px !important;
}

.legal-text{
  color: #d1d5db !important;
  line-height: 1.8 !important;
  margin-bottom: 1.2rem !important;
  text-align: justify !important;
  font-size: 1rem !important;
}

.legal-list{
  list-style: none !important;
  padding-left: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.legal-list li{
  color: #d1d5db !important;
  margin-bottom: 0.8rem !important;
  position: relative !important;
  line-height: 1.6 !important;
}

.legal-list li::before{
  content: "•" !important;
  color: var(--accent-orange) !important;
  font-weight: bold !important;
  position: absolute !important;
  left: -1.2rem !important;
}

/* SUMÁRIO (O "BOX" GRANDE COM 3 COLUNAS) */
.sumario-box{
  background-color: rgba(6, 23, 40, 0.8) !important;
  border: 1px solid var(--primary-teal) !important;
  border-radius: 8px !important;
  padding: 2rem !important;
  margin-bottom: 4rem !important;
}

.sumario-title{
  color: var(--accent-orange) !important;
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  padding-bottom: 10px !important;
}

/* GRADE RESPONSIVA (IGUAL AO PRINT) */
.sumario-list{
  list-style: none !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 10px 30px !important;
}

.sumario-list li a{
  color: var(--text-gray) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, padding-left 0.2s ease !important;
  font-size: 0.9rem !important;
  display: block !important;
  padding: 5px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.sumario-list li a:hover{
  color: var(--primary-teal-light) !important;
  padding-left: 5px !important;
}

/* GARANTE QUE AS ÂNCORAS (#CAPX) NÃO FIQUEM ESCONDIDAS PELO MENU FIXO */
[id^="cap"]{
  scroll-margin-top: 130px !important;
}

@media (max-width: 768px){
  .legal-content{ padding: 1.5rem !important; }
  .sumario-list{ grid-template-columns: 1fr !important; }
  .legal-title{ font-size: 1.5rem !important; margin-top: 3rem !important; }
  .legal-subtitle{ font-size: 1.1rem !important; }
}
/* ==================== ALERTA: USO CORRETO DO SERVIDOR (FILTRO VPS) ==================== */

.alerta-uso-servidor{
  max-width: var(--container-max);
  margin: 50px auto 70px auto;   /* ESPAÇO ACIMA E ABAIXO */
  padding: 0 20px;               /* IGUAL AO .container */
}

.alerta-container{
  background: rgba(6, 23, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 28px 34px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
  text-align: center;
}

.alerta-container h2{
  color: var(--accent-orange);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.alerta-container p{
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 14px 0;
}

.alerta-destaque{
  background: rgba(248, 156, 49, 0.14);
  border: 1px solid rgba(248, 156, 49, 0.25);
  border-left: 4px solid var(--accent-orange);
  border-radius: 8px;
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 700;
  margin: 18px 0;
}

.alerta-final{
  color: var(--primary-teal-light);
  font-weight: 800;
  margin-top: 18px;
}

/* MOBILE */
@media (max-width: 768px){
  .alerta-container{
    padding: 22px 18px;
  }

  .alerta-container h2{
    font-size: 1.25rem;
  }

  .alerta-container p{
    font-size: 1rem;
  }
}
/* ==================== CORREÇÕES DE LAYOUT (PÁGINAS ESPECÍFICAS) ==================== */
/* Remove padding padrão e força altura mínima para páginas de filtro/funil */
.layout-full-height {
  padding-top: 0 !important;
  display: block !important;
  min-height: 80vh;
}

/* Ajuste fino para mobile, se necessário (opcional, mas recomendado) */
@media (max-width: 768px) {
  .layout-full-height {
    min-height: 70vh; /* Ajuste para telas menores */
  }
}
/* ==================== INFRAESTRUTURA (NOVO) ==================== */

/* Container de cada seção de infraestrutura */
.infra-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 6rem; /* Espaço entre os blocos */
  opacity: 0; /* Para animação de entrada */
  animation: fadeInUp 0.8s ease forwards;
}

/* Alternar a ordem: Imagem à esquerda nos pares, à direita nos ímpares */
.infra-section:nth-child(even) {
  flex-direction: row-reverse;
}

/* Animação em cascata para não aparecerem todos de uma vez */
.infra-section:nth-child(1) { animation-delay: 0.1s; }
.infra-section:nth-child(2) { animation-delay: 0.2s; }
.infra-section:nth-child(3) { animation-delay: 0.3s; }
.infra-section:nth-child(4) { animation-delay: 0.4s; }
.infra-section:nth-child(5) { animation-delay: 0.5s; }

/* Lado do Texto */
.infra-content {
  flex: 1;
}

/* Badge (a etiqueta colorida acima do título) */
.highlight-badge {
  display: inline-block;
  background-color: rgba(26, 123, 122, 0.15); /* Fundo Teal suave */
  color: var(--primary-teal-light);
  border: 1px solid var(--primary-teal-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Título */
.infra-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Texto descritivo */
.infra-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.infra-text strong {
  color: var(--accent-orange);
}

/* Lado da Imagem */
.infra-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* Sombra elegante */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  background-color: var(--bg-dark); /* Fundo caso a imagem demore */
}

/* Efeito ao passar o mouse na imagem */
.infra-image:hover {
  transform: scale(1.02);
  border-color: var(--primary-teal-light);
  box-shadow: 0 20px 60px rgba(26, 123, 122, 0.2);
}

.infra-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Se a imagem for placeholder, aplicamos um filtro para ficar menos agressiva */
  transition: transform 0.5s ease;
}
/* ==================== ATUALIZAÇÃO V4.0: EFEITOS DE INFRAESTRUTURA (NEON) ==================== */

/* 1. EFEITO NA IMAGEM (Brilho atrás da imagem) */
.infra-image:hover {
  transform: scale(1.02);
  border-color: #72efea !important; /* Borda Neon */
  
  /* Explosão de Luz Ciano atrás da imagem */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6), 
    0 0 60px rgba(114, 239, 234, 0.4) !important;
}

/* 2. EFEITO NO BADGE/ÍCONE "DESDE 2010" (Brilho atrás do texto) */
.highlight-badge {
  transition: all 0.3s ease; /* Garante que a animação seja suave */
}

.highlight-badge:hover {
  border-color: #72efea !important; /* Borda Neon */
  background-color: rgba(6, 23, 40, 0.95); /* Fundo Escuro */
  color: #72efea !important; /* Texto Aceso */
  
  /* Explosão de Luz */
  box-shadow: 
    0 0 15px rgba(26, 123, 122, 0.8), 
    0 0 30px rgba(114, 239, 234, 0.5);
    
  transform: translateY(-3px) scale(1.05); /* Pulo sutil */
  cursor: default;
}

/* ==================== RESPONSIVO PARA INFRAESTRUTURA ==================== */
@media (max-width: 900px) {
  .infra-section {
    flex-direction: column; /* Empilha verticalmente */
    text-align: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  /* No mobile, mantém a ordem padrão (Imagem em cima ou embaixo conforme preferir) */
  .infra-section:nth-child(even) {
    flex-direction: column; 
  }

  /* Ajuste da ordem visual no mobile: Imagem depois do texto ou antes? 
     Aqui coloco a imagem para baixo do texto no mobile */
  .infra-content {
    order: 1;
  }
  .infra-image {
    order: 2;
    width: 100%;
    max-height: 400px; /* Limita altura no mobile */
  }
  
  .infra-image img {
    height: 100%;
    max-height: 400px;
  }
}
/* TENTATIVA DE GLOW MAIS SUAVE (PARA DISFARÇAR RECORTE) */
.navbar-brand:hover img, 
.logo:hover img,
header img:hover {
  /* Usando apenas luz difusa, sem luz dura de borda */
  filter: drop-shadow(0 0 15px rgba(114, 239, 234, 0.5)); 
  transform: scale(1.02); /* Movimento menor */
  cursor: pointer;
}
/* =========================================================
   PADRÃO VISUAL: CARDS DE FILTRO (CAIXAS GRANDES)
   EFEITO: "NEON TURBO" (Fundo Azulado/Verde igual ao topo)
   ========================================================= */

/* Garante que o movimento seja suave */
.categoria-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  border: 1px solid rgba(85, 165, 160, 0.2); /* Borda original suave */
}

/* O EFEITO AO PASSAR O MOUSE NO CARD */
.categoria-card:hover {
  /* 1. A Borda vira Neon Ciano */
  border-color: #72efea !important; 
  
  /* 2. A Explosão de Luz de Fundo (Aura Ciano/Verde) */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6),  /* Luz interna */
    0 0 50px rgba(114, 239, 234, 0.4) !important; /* Luz externa grande */

  /* 3. A Levitação (Sobe para destacar) */
  transform: translateY(-10px) scale(1.02) !important;
  
  /* 4. Prioridade Visual */
  z-index: 5; 
  background-color: rgba(6, 23, 40, 0.95); /* Fundo escuro para destacar o neon */
}

/* Opcional: Acender o Título do Card também */
.categoria-card:hover .categoria-header {
  background-color: rgba(26, 123, 122, 0.8) !important; /* Header fica mais verde */
}
/* =========================================================
   PADRÃO VISUAL V4.0 (DEFINITIVO): HOME
   Correção: Z-Index Delay (Evita o corte do brilho na saída)
   ========================================================= */

.stat-card,
.service-card {
  /* 1. MANTÉM A RENDERIZAÇÃO DE ALTA QUALIDADE */
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  position: relative;
  
  /* 2. BASE ESTÁVEL */
  border: 1px solid rgba(85, 165, 160, 0.2);
  background: rgba(255, 255, 255, 0.05);

  /* 3. A MÁGICA DO TIMING (AQUI ESTÁ O SEGREDO) */
  /* Quando o mouse SAI: Anima visual em 0.3s, mas segura o Z-Index por 0.3s */
  transition: 
    transform 0.3s ease-out, 
    box-shadow 0.3s ease-out, 
    background-color 0.3s ease, 
    border-color 0.3s ease,
    z-index 0s linear 0.3s; /* <--- O DELAY QUE SEGURA O CARD NO TOPO */
    
  z-index: 1; /* Estado normal: camada baixa */
}

/* ESTADO HOVER (MOUSE EM CIMA) */
.stat-card:hover,
.service-card:hover {
  border-color: #72efea !important;
  background-color: rgba(6, 23, 40, 0.95) !important;
  
  /* Luz Neon */
  box-shadow: 
    0 0 20px rgba(26, 123, 122, 0.6),
    0 0 50px rgba(114, 239, 234, 0.4) !important;

  /* Movimento */
  transform: translateY(-5px) scale(1.02) translateZ(0) !important;
  
  /* Quando o mouse ENTRA: Z-Index sobe instantaneamente (sem delay) */
  z-index: 100;
  transition-delay: 0s; /* Garante resposta imediata na entrada */
}

/* DETALHES EXTRAS (MANTIDOS) */
.stat-card:hover .stat-number {
  color: #72efea !important;
  text-shadow: 0 0 15px rgba(114, 239, 234, 0.8);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: #72efea !important;
  filter: drop-shadow(0 0 8px rgba(114, 239, 234, 0.6));
  transform: scale(1.1);
  transition: all 0.3s ease;
}
/* ================================== 08/01/26 AS 04:12  =========================================*/
/* ================================== ATUALIZAÇÕES HOJE  =========================================*/
/* ==================== PADRÃO VISUAL V4.0: MENU SUPERIOR (NEON TEXT) ==================== */
/* Faz os links do menu acenderem com brilho Ciano ao passar o mouse */

.header .nav-menu a:hover, 
.nav-link:hover {
  /* 1. A cor da letra vira o Ciano da marca */
  color: #72efea !important;
  
  /* 2. O Efeito "Por Trás": Uma sombra de luz (Glow) que cria a aura neon */
  text-shadow: 
    0 0 10px rgba(114, 239, 234, 0.8), 
    0 0 20px rgba(114, 239, 234, 0.4),
    0 0 30px rgba(26, 123, 122, 0.6); /* Camada mais profunda */

  /* 3. Um leve "pulo" para dar interatividade */
  transform: translateY(-2px);
  
  /* Garante transição suave */
  transition: all 0.3s ease;
}
/* ==================== NOVO: BOTÃO PAINEL DO CLIENTE (NEON LARANJA EXCLUSIVO) ==================== */
/* Este bloco força o estilo específico para o botão de login, ignorando o resto */

/* 1. Define a classe caso ela não exista no HTML ainda */
.painel-cliente-btn {
  background-color: var(--accent-orange) !important;
  color: white !important;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  /* Garante que pareça um botão mesmo dentro do menu */
  padding: 0.75rem 1.5rem; 
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

/* 2. O EFEITO NEON AO PASSAR O MOUSE (HOVER) - VERSÃO BLINDADA */
/* O caminho completo força o navegador a respeitar o Branco Absoluto */
.header .nav-menu .nav-item .painel-cliente-btn:hover,
.nav-menu.menu-aberto .nav-item .painel-cliente-btn:hover {
  background-color: var(--accent-orange) !important;
  
  /* BRANCO ABSOLUTO E IMUTÁVEL */
  color: #ffffff !important;
  border-color: #ff9f43 !important;
  
  /* NEON APENAS EXTERNO */
  box-shadow: 
    0 0 15px rgba(248, 156, 49, 0.7), 
    0 0 30px rgba(248, 156, 49, 0.4) !important;

  transform: translateY(-2px);
  
  /* ELIMINA QUALQUER SOMBRA VERDE QUE POSSA EXISTIR NO MENU */
  text-shadow: none !important;
}

/* GARANTE QUE O ÍCONE (SE HOUVER) TAMBÉM FIQUE BRANCO E PARADO */
.painel-cliente-btn:hover i,
.painel-cliente-btn:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  transform: none !important;
}

/* Garante que o ícone (se houver) fique branco também */
.painel-cliente-btn:hover i,
.painel-cliente-btn:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}
/* ==================== CORREÇÃO CLS (RESERVA DE ESPAÇO) ==================== */
/* Força a altura exata do banner antes do carregamento para evitar pulos */

#box-banner-superior {
  display: block;
  width: 100%;
  /* Altura mínima igual à do .hero para segurar o espaço */
  min-height: 0; 
  background-color: var(--bg-darker); /* Evita buraco branco enquanto carrega */
}

/* Ajuste para telas menores (Mobile) */
@media (max-width: 768px) {
  #box-banner-superior {
    min-height: 0; /* No mobile o banner ocupa a tela toda */
  }
}
/* ==================== OTIMIZAÇÃO GOOGLE CORE WEB VITALS (ORÁCULO) ==================== */

/* 1. MELHORIA DE LCP (PINTURA DE CONTEÚDO):
   Diz ao navegador para não renderizar rodapé e seções pesadas 
   enquanto elas não aparecem na tela. Libera CPU para o Topo. */
.footer, .pricing-grid, .features, .locations {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px; /* Estimativa de altura para evitar barra de rolagem pulando */
}

/* 2. PROTEÇÃO ANTI-CLS (LAYOUT SHIFT) PARA IMAGENS:
   Se a imagem não tiver tamanho, tenta segurar um quadrado ou paisagem
   para evitar colapso total de 0px. */
img {
  font-style: italic; /* Mostra alt text em itálico se quebrar */
}

/* Força proporção em ícones para evitar redimensionamento brusco */
.service-icon svg, .feature-icon svg, .value-icon svg {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; 
}

/* OTIMIZAÇÃO DE TEXTO (EVITA FOIT - FLASH OF INVISIBLE TEXT) */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* ==================== FORMULÁRIOS NEON (ADD-ON V4.0) ==================== */
.contact-section {
  padding: 60px 0;
  background-image: linear-gradient(to bottom, var(--bg-darker), var(--primary-dark));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(85, 165, 160, 0.2);
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  color: var(--primary-teal-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(6, 23, 40, 0.8); /* Fundo escuro */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* EFEITO NEON AO DIGITAR (FOCUS) */
/* ###### 16/01/26 07:14##### */
.form-control:focus {
  border-color: #72efea !important;
  background-color: rgba(6, 23, 40, 1) !important;
  outline: none;
  box-shadow: 0 0 20px rgba(26, 123, 122, 0.6), 0 0 40px rgba(114, 239, 234, 0.4) !important;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 123, 122, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #72efea;
  flex-shrink: 0;
  border: 1px solid rgba(85, 165, 160, 0.3);
}

.contact-text h3 { color: white; margin-bottom: 0.5rem; font-size: 1.2rem; }
.contact-text p { color: var(--text-gray); line-height: 1.6; }
.contact-text a { color: var(--accent-orange); font-weight: 700; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-box { padding: 1.5rem; }
}
/* ==========================================================================
   PATCH V2: CORREÇÃO DE NEON + BLINDAGEM CONTRA AUTOFILL
   Resolve o problema do campo de E-mail ficar "apagado" ou com fundo claro.
   ========================================================================== */

/* 1. RESET DE AUTOFILL (A "Cura" para o E-mail apagado) */
/* Isso força o Chrome/Edge a usar o nosso fundo escuro, não o amarelo/azul deles */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    /* Engana o navegador usando uma sombra interna dura para simular cor de fundo */
    -webkit-box-shadow: 0 0 0 30px rgba(6, 23, 40, 0.9) inset !important;
    /* Força a cor do texto para o nosso cinza claro */
    -webkit-text-fill-color: #ecebe9 !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #72efea; /* Cursor do mouse ciano */
}

/* 2. PREPARAÇÃO DO CONTAINER */
.contact-section .form-group {
    position: relative;
    z-index: 1;
}

/* 3. A LUZ NEON (HALO) - VERSÃO EXPANDIDA */
.contact-section .form-group:focus-within::before {
    content: '';
    position: absolute;
    /* Expandimos mais para garantir visibilidade nas bordas */
    top: -3px;      
    left: -3px;     
    right: -3px;    
    bottom: -3px;   
    
    /* Cor Ciano Neon Intensa */
    background: var(--primary-teal, #72efea); 
    
    /* Desfoque alto para parecer luz */
    filter: blur(25px); 
    opacity: 0.25;  /* Aumentei um pouco a intensidade */
    z-index: -1;    /* Fica atrás do campo */
    border-radius: 12px;
    
    /* Animação de pulsação */
    animation: pulseNeonHard 1.5s infinite alternate;
}

@keyframes pulseNeonHard {
    from { opacity: 0.2; filter: blur(20px); }
    to   { opacity: 0.35; filter: blur(30px); }
}
/* ==========================================================================
   MÓDULO: PÁGINA DE CONTATO (MIGRADO DE FALE-CONOSCO.HTML)
   Data: 14/01/2026 - Unificação Oracle III
   ========================================================================== */

/* === 1. CAIXA DO FORMULÁRIO === */
/* === 16/01/26 07:23 === */
.form-control:hover, .form-control:focus {
    border-color: #72efea !important;
    background-color: rgba(6, 23, 40, 1) !important;
    outline: none;
    box-shadow: 0 0 20px rgba(26, 123, 122, 0.6), 0 0 40px rgba(114, 239, 234, 0.4) !important;
    transform: scale(1.01);
}
.form-box:hover {
    border-color: #72efea; 
    box-shadow: 0 0 40px rgba(26, 123, 122, 0.3);
}

/* === 2. CAMPOS DE INPUT === */
.form-control {
    background-color: rgba(2, 8, 20, 0.8);
    border: 1px solid rgba(85, 165, 160, 0.4);
    color: #fff;
    transition: all 0.3s ease;
}
.form-control:focus {
    background-color: rgba(6, 23, 40, 1);
    border-color: #72efea !important;
    outline: none;
    box-shadow: 0 0 15px rgba(114, 239, 234, 0.6), 0 0 30px rgba(26, 123, 122, 0.4);
}

/* === 3. MENU DROPDOWN AZURE V5 === */
.azure-select-wrapper { position: relative; user-select: none; width: 100%; z-index: 50; }
.azure-select-wrapper select { display: none !important; }
.azure-select-v5 { position: relative; display: block; height: 58px; }

.azure-trigger {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 0 15px; font-size: 1rem; font-weight: 400; color: #fff;
  background: rgba(2, 8, 20, 0.8); border: 1px solid rgba(85, 165, 160, 0.4);
  border-radius: 4px; cursor: pointer; transition: all 0.2s ease;
  height: 100%; width: 100%; box-sizing: border-box;
}
/* === 16/01/26 AS 07:02 === */
.azure-trigger:hover { 
    border-color: #72efea !important; 
    background-color: rgba(6, 23, 40, 0.95) !important;
    box-shadow: 0 0 20px rgba(26, 123, 122, 0.6), 0 0 40px rgba(114, 239, 234, 0.4) !important;
    transform: translateY(-2px);
    z-index: 100;
}

.azure-options-list {
  position: absolute; display: block; top: 0 !important; left: 0 !important; width: 100% !important;
  background: #020814 !important; border: 1px solid #72efea; border-radius: 4px;
  z-index: 9999 !important; opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: 0 10px 50px rgba(0,0,0,0.95); max-height: 280px; overflow-y: auto;
}
.azure-select-v5.open .azure-options-list { opacity: 1; visibility: visible; pointer-events: all; }
.azure-select-v5.open .azure-trigger { visibility: hidden !important; }

.azure-option-item {
  position: relative; display: flex; align-items: center; padding: 0 15px;
  height: 58px; font-size: 1rem; font-weight: 400; color: #d1d5db;
  cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.1s;
}
.azure-option-item:last-child { border-bottom: none; }
.azure-option-item:hover { background-color: #1a7b7a !important; color: #ffffff !important; }
.azure-option-item.selected { background-color: #1a7b7a !important; color: #ffffff !important; }
.azure-options-list:hover .azure-option-item.selected:not(:hover) { background-color: transparent !important; color: #d1d5db !important; }

.arrow-neon { position: relative; height: 10px; width: 10px; margin-left: 10px; }
.arrow-neon::before, .arrow-neon::after {
  content: ""; position: absolute; bottom: 0px; width: 0.15rem; height: 100%; transition: all 0.3s;
}
.arrow-neon::before { left: -3px; transform: rotate(-45deg); background-color: #72efea; }
.arrow-neon::after { left: 3px; transform: rotate(45deg); background-color: #72efea; }
.azure-select-v5.open .arrow-neon::before { transform: rotate(-135deg); }
.azure-select-v5.open .arrow-neon::after { transform: rotate(135deg); }

.azure-options-list::-webkit-scrollbar { width: 8px; }
.azure-options-list::-webkit-scrollbar-track { background: #020814; }
.azure-options-list::-webkit-scrollbar-thumb { background-color: #1a7b7a; border-radius: 4px; border: 2px solid #020814; }

/* === 4. ESTILOS DO CAPTCHA === */
/* === 16/01/26 7:05 === */
.antispam-box:focus-within, .antispam-box:hover {
    border-color: #72efea !important;
    background-color: rgba(6, 23, 40, 0.95) !important;
    box-shadow: 0 0 20px rgba(26, 123, 122, 0.6), 0 0 40px rgba(114, 239, 234, 0.4) !important;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
}
.antispam-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 15px; }
.antispam-title { font-size: 1.4rem; font-weight: 800; color: #ffffff; text-transform: uppercase; margin: 0; }
.antispam-instructions { color: #d1d5db; font-size: 0.95rem; margin-bottom: 0; flex-basis: 100%; }
.captcha-grid { display: flex; gap: 15px; align-items: center; justify-content: flex-end; }
.letter-box { width: 50px; height: 50px; background-color: var(--accent-orange); color: #ffffff; font-size: 1.8rem; font-weight: bold; display: flex; align-items: center; justify-content: center; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); user-select: none; cursor: default; }
.input-box { width: 50px; height: 50px; background-color: var(--primary-teal); border: 2px solid transparent; color: #ffffff; font-size: 1.8rem; font-weight: bold; text-align: center; border-radius: 4px; transition: all 0.3s ease; text-transform: lowercase; }
.input-box:focus { border-color: #ffffff; outline: none; background-color: var(--primary-teal-light); box-shadow: 0 0 15px rgba(114, 239, 234, 0.5); }
.captcha-pair { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.captcha-layout { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.captcha-text-area { flex: 1; min-width: 250px; }
.error-message { color: #ff6b6b; font-weight: bold; margin-top: 10px; display: none; }
@media (max-width: 600px) {
    .captcha-layout { flex-direction: column; align-items: flex-start; gap: 20px; }
    .captcha-grid { width: 100%; justify-content: center; }
}

/* === 5. CARDS LATERAIS E BANNER === */
.contact-info-item {
  padding: 25px; border: 1px solid rgba(114, 239, 234, 0.1); border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  margin-bottom: 20px; display: flex; align-items: center; gap: 20px;
}
.contact-icon {
  background: rgba(26, 123, 122, 0.15); border: 1px solid rgba(85, 165, 160, 0.3); color: #72efea;
  border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-text h3 { margin-top: 0; margin-bottom: 5px; font-size: 1.1rem; color: #fff; transition: color 0.3s; }

/* === 16/01/26 AS 07:31 === */
.contact-info-item:hover {
    border-color: #72efea !important;
    background-color: rgba(6, 23, 40, 0.95) !important;
    box-shadow: 0 0 20px rgba(26, 123, 122, 0.6), 0 0 40px rgba(114, 239, 234, 0.4) !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}
.contact-info-item:hover .contact-text h3 { color: #72efea; }


/* ==========================================================================
   MÓDULO MESTRE: MOBILE HERO BANNER (VÍDEO + CARROSSEL + TEXTO)
   Status: ORACLE V5.0 - SUPORTE TOTAL UNIFICADO
   ========================================================================== */

/* 1. Esconde nativamente no Desktop */
.mobile-hero-banner { display: none !important; }

/* 2. Regras para Mobile (Abaixo de 900px) */
@media (max-width: 900px) {
    
    /* [ADD-ON ORÁCULO] TRAVA DE SEGURANÇA: ESCONDE O BANNER PC */
    .hero-desktop {
        display: none !important;
    }
    
    /* === ESTRUTURA PRINCIPAL === */
    .mobile-hero-banner { 
        display: block !important; 
        width: 100%;
     /* Altura: Mínimo de 450px para garantir visibilidade, máximo de 80% da tela */
        min-height: 450px; 
        height: 80vh;
        overflow: hidden;
        position: relative;
        margin-bottom: 0;
        
        /* IDENTIDADE VISUAL (NEON) */
        border-bottom: 2px solid #72efea; 
        box-shadow: 0 4px 15px rgba(114, 239, 234, 0.2);
    }

    /* === MÍDIA DE FUNDO (VÍDEO E IMAGENS) === */
    /* Garante que Vídeo, Imagem Fixa e Carrossel fiquem no fundo */
    .mobile-hero-video, 
/* --- REGRA PARA IMAGENS (EQUIPE, CARROSSEL, ETC) --- */
.mobile-hero-banner > img,
.carousel-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top; /* IMAGENS FICAM CENTRALIZADAS */
    z-index: 0;
}

/* --- REGRA EXCLUSIVA PARA O VÍDEO (NOSSO DIFERENCIAL) --- */
.mobile-hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 70% center; /* AJUSTE FINO SÓ PARA O VÍDEO */
    z-index: 0;
}

    /* === LÓGICA DO CARROSSEL (ROTAÇÃO) === */
    .carousel-wrapper {
        position: relative;
        width: 100%; height: 100%;
        z-index: 0;
    }

    .carousel-img {
        opacity: 0; 
        animation: imageFade 16s infinite; 
    }

    /* TEMPOS DO CARROSSEL */
    .carousel-img:nth-child(1) { animation-delay: 0s; }
    .carousel-img:nth-child(2) { animation-delay: 4s; }
    .carousel-img:nth-child(3) { animation-delay: 8s; }
    .carousel-img:nth-child(4) { animation-delay: 12s; }

    @keyframes imageFade {
        0% { opacity: 0; }
        5% { opacity: 1; }   
        25% { opacity: 1; }  
        30% { opacity: 0; }  
        100% { opacity: 0; } 
    }

    /* === OVERLAY (PELÍCULA VERDE - DNA AZUREWEB) === */
 /* ==========================================================================
   REGRA MESTRA DE FILTRO DE VIDRO (CONSISTÊNCIA TOTAL V1.1)
   ATUALIZADO: Agora inclui .mobile-hero-overlay na lista!
   ========================================================================== */
.azure-glass-overlay, .hero-overlay, .mobile-hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  
  /* A FÓRMULA DO VIDRO CRISTALINO (Tom Claro Unificado) */
  background: linear-gradient(
      135deg, 
      rgba(6, 23, 40, 0.4) 0%,      /* Azul Profundo (Topo) */
      rgba(26, 123, 122, 0.3) 100%  /* Verde Teal (Base) */
  );
  
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

    /* === CONTEÚDO DE TEXTO (TITULOS) === */
    .mobile-hero-content {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5; /* Fica SOBRE a película verde */
        text-align: center;
        width: 90%;
    }

    .mobile-hero-title {
        font-family: "Century Gothic", "Futura", sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1.3;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
        text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
        animation: fadeInUp 1s ease 0.5s both;
    }

    .mobile-hero-subtitle {
        font-family: sans-serif;
        font-size: 1.1rem;
        color: #f0f0f0;
        text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
        animation: fadeInUp 1s ease 0.8s both;
    }

/* ==========================================================================
   MÓDULO: SCROLL INDICATOR (UNIFICADO - DESKTOP & MOBILE)
   Status: ORACLE V3.0 - NEON STYLE
   ========================================================================== */
.scroll-indicator {
  display: flex;
  position: fixed;
  bottom: 30px; /* Posição padrão */
  left: 50%;
  transform: translateX(-50%);
  z-index: 900; /* Alto z-index para ficar sobre tudo */
  flex-direction: column;
  align-items: center;
  gap: 5px;
  
  /* ESTILO NEON (IDENTIDADE VISUAL V4.0) */
  color: #72efea; /* Ciano Marca */
  text-shadow: 0 0 10px rgba(114, 239, 234, 0.8);
  
  animation: floatArrow 2s infinite ease-in-out;
  cursor: pointer;
  text-decoration: none;
  
  /* Comportamento de transição (Controlado pelo JS) */
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: sans-serif;
  opacity: 0.9;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 5px rgba(114, 239, 234, 0.5)); /* Glow na seta */
}

/* ANIMAÇÃO DE FLUTUAÇÃO */
@keyframes floatArrow {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* ESTADO OCULTO (ATIVADO PELO SCRIPT.JS AO ROLAR) */
.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

/* === AJUSTE FINO PARA MOBILE === */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 80px; /* Sobe um pouco no celular para não ficar em cima de botões de navegador */
  }
}

/* ==========================================================================
   MÓDULO: SISTEMA DE BLINK (PISCA-PISCA SERVIDOR) - REUTILIZÁVEL
   Descrição: Alterna opacidade da imagem superior para simular LED piscando.
   Uso: Adicione a classe 'blink-system' no pai e 'static-base'/'blinking-layer' nas imgs.
   
   31/01/26 AS 04:48
   ========================================================================== */

/* ==========================================================================
   SISTEMA SIMPLES (2 EM 2 SEGUNDOS)
   ========================================================================== */
/* ==========================================================================
   SISTEMA SIMPLES V3 (CORREÇÃO DE CAMADAS/OVERLAY)
   Descrição: Garante que AMBAS as imagens fiquem atrás do filtro verde.
   ========================================================================== */
.sistema-simples {
    position: absolute; /* Mudei para absolute para fixar na base */
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* O SEGREDO: Força as imagens a ficarem ATRÁS das overlays (z-index 1 e 2) */
    background-color: #020814; 
}

.sistema-simples img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* BASE (OFF): Fica no fundo do container */
.sistema-simples .img-base {
    z-index: 1; /* Camada interna 1 */
    display: block !important;
    opacity: 1 !important;
}

/* TOPO (ON): Fica acima da base, mas ainda DENTRO do container z-0 */
.sistema-simples .img-topo {
    z-index: 2; /* Camada interna 2 */
    /* Pisca: 2s invisível (mostra base), 2s visível (mostra topo) */
    animation: trocaSimples 0.3s infinite steps(1);
}

@keyframes trocaSimples {
    0%   { opacity: 0; } 
    50%  { opacity: 1; } 
    100% { opacity: 0; }
}
