    /* ===== HD SOLUTIONS - ESTILOS PRINCIPAIS ===== */
    
    * {
      box-sizing: border-box;
    }
    
    body {
      margin: 0;
      padding: 0;
      font-family: 'Exo', sans-serif;
      background-color: #000000;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    /* ===== VÍDEO DE FUNDO GLOBAL ===== */
    #bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.95;
      transition: opacity 0.5s ease;
    }
    
    /* ===== CARREGAMENTO TÁTICO ===== */
    .tactical-loading {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #000000 0%, #001a1a 50%, #000000 100%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    
    .tactical-loading.hidden {
      opacity: 0;
      visibility: hidden;
    }
    
    .loading-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .loading-particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background-color: #00F0FF;
      border-radius: 50%;
      box-shadow: 0 0 20px 4px rgba(0, 240, 255, 0.8);
      animation: tactical-float 3s infinite linear;
    }
    
    .loading-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .loading-particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 0.5s; }
    .loading-particle:nth-child(3) { top: 60%; left: 80%; animation-delay: 1s; }
    .loading-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
    .loading-particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 2s; }
    .loading-particle:nth-child(6) { top: 70%; left: 30%; animation-delay: 2.5s; }
    .loading-particle:nth-child(7) { top: 50%; left: 50%; animation-delay: 3s; }
    .loading-particle:nth-child(8) { top: 10%; left: 60%; animation-delay: 3.5s; }
    
    @keyframes tactical-float {
      0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
      }
      20% {
        opacity: 1;
      }
      80% {
        opacity: 1;
      }
      100% {
        transform: translateY(-200px) translateX(100px) scale(0.5);
        opacity: 0;
      }
    }
    
    .loading-text {
      position: relative;
      z-index: 10;
      text-align: center;
      color: #00F0FF;
      font-family: 'Orbitron', monospace, sans-serif;
    }
    
    .loading-title {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 700;
      margin-bottom: 30px;
      text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
      animation: loading-pulse 2s infinite alternate;
    }
    
    .loading-progress {
      width: clamp(200px, 40vw, 400px);
      height: 4px;
      background: rgba(0, 240, 255, 0.2);
      border-radius: 2px;
      margin: 20px auto;
      overflow: hidden;
      border: 1px solid rgba(0, 240, 255, 0.5);
    }
    
    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #00F0FF, #FFFFFF, #00F0FF);
      border-radius: 2px;
      width: 0%;
      transition: width 0.3s ease;
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    }
    
    .loading-status {
      font-size: clamp(14px, 2vw, 18px);
      font-family: 'Rajdhani', monospace, sans-serif;
      margin-top: 20px;
      opacity: 0.8;
      animation: loading-blink 1.5s infinite;
    }
    
    @keyframes loading-pulse {
      0% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
      }
      100% {
        text-shadow: 0 0 30px rgba(0, 240, 255, 1), 0 0 40px rgba(0, 240, 255, 0.5);
      }
    }
    
    @keyframes loading-blink {
      0%, 50% {
        opacity: 0.8;
      }
      51%, 100% {
        opacity: 0.3;
      }
    }
    
    /* ===== ESTILOS GLOBAIS ===== */
    .slide-section {
      width: 100vw;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    
    .section-content {
      padding: clamp(40px, 6vw, 80px);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1400px;
      position: relative;
      z-index: 5;
      height: 100%;
      justify-content: center;
    }
    
    .section-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(36px, 5vw, 48px);
      margin-bottom: 30px;
      font-weight: 700;
      color: #00F0FF;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
      letter-spacing: 2px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: #00F0FF;
      box-shadow: 0 0 15px rgba(0, 240, 255, 1);
    }
    
    .section-subtitle {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(20px, 3vw, 28px);
      margin-bottom: 50px;
      max-width: 900px;
      line-height: 1.5;
      font-weight: 300;
      font-style: italic;
      letter-spacing: 1px;
      color: #cccccc;
    }
    
    /* ===== EFEITOS VISUAIS COMUNS ===== */
    .grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 1;
      perspective: 1000px;
      transform: rotateX(60deg) scale(2.5) translateZ(-200px);
      transform-origin: center center;
      opacity: 0.3;
    }
    
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 2;
    }
    
    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background-color: rgba(0, 240, 255, 0.7);
      border-radius: 50%;
      box-shadow: 0 0 10px 2px rgba(0, 240, 255, 0.5);
    }
    
    .particle:nth-child(1) { top: 10%; left: 20%; animation: float 15s infinite linear; }
    .particle:nth-child(2) { top: 20%; left: 80%; animation: float 20s infinite linear; }
    .particle:nth-child(3) { top: 50%; left: 50%; animation: float 25s infinite linear; }
    .particle:nth-child(4) { top: 70%; left: 30%; animation: float 18s infinite linear; }
    .particle:nth-child(5) { top: 80%; left: 70%; animation: float 22s infinite linear; }
    .particle:nth-child(6) { top: 30%; left: 30%; animation: float 19s infinite linear; }
    .particle:nth-child(7) { top: 40%; left: 70%; animation: float 21s infinite linear; }
    .particle:nth-child(8) { top: 60%; left: 40%; animation: float 17s infinite linear; }
    .particle:nth-child(9) { top: 90%; left: 10%; animation: float 23s infinite linear; }
    .particle:nth-child(10) { top: 5%; left: 90%; animation: float 16s infinite linear; }
    
    @keyframes float {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
      }
    }
    
    .scanlines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 240, 255, 0.03) 51%,
        transparent 51%
      );
      background-size: 100% 4px;
      z-index: 3;
      pointer-events: none;
    }
    
    .hud-element {
      position: absolute;
      border: 2px solid rgba(0, 240, 255, 0.5);
      background: rgba(0, 30, 38, 0.3);
      border-radius: 8px;
      padding: 15px;
      font-family: 'Rajdhani', monospace, sans-serif;
      font-size: clamp(12px, 1.5vw, 16px);
      color: #00F0FF;
      z-index: 4;
      letter-spacing: 1px;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
      backdrop-filter: blur(5px);
    }
    
    .hud-value {
      color: #FFFFFF;
      font-weight: 500;
    }
    
    .hud-top-left {
      top: 30px;
      left: 30px;
      width: clamp(150px, 18vw, 200px);
    }
    
    .hud-top-right {
      top: 30px;
      right: 30px;
      width: clamp(150px, 18vw, 200px);
      text-align: right;
    }
    
    .hud-bottom-left {
      bottom: 30px;
      left: 30px;
      width: clamp(150px, 18vw, 200px);
    }
    
    .hud-bottom-right {
      bottom: 30px;
      right: 30px;
      width: clamp(150px, 18vw, 200px);
      text-align: right;
    }
    
    /* ===== NAVEGAÇÃO ===== */
    .navigation-buttons {
      position: fixed;
      bottom: 120px;
      right: 40px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .nav-button {
      background: rgba(0, 30, 38, 0.7);
      border: 2px solid #00F0FF;
      border-radius: 50%;
      width: clamp(60px, 8vw, 80px);
      height: clamp(60px, 8vw, 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00F0FF;
      font-size: clamp(24px, 3vw, 32px);
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
    }
    
    .nav-button:hover {
      background: rgba(0, 240, 255, 0.3);
      transform: scale(1.15);
      box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
    
    .nav-button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    /* ===== SEÇÃO CAPA ===== */
    #capa {
      background: transparent;
    }
    
    .capa-content {
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .logo {
      display: block;
      max-width: 300px;
      width: 100%;
      height: auto;
      margin: 0 auto 40px;
      filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7));
      animation: pulse 3s infinite alternate;
    }
    
    .main-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(48px, 8vw, 72px);
      text-align: center;
      margin-bottom: 30px;
      line-height: 1.1;
      font-weight: 700;
      background: linear-gradient(90deg, #FFFFFF, #00F0FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
      position: relative;
      letter-spacing: 2px;
    }
    
    .main-subtitle {
      font-family: 'Rajdhani', monospace, sans-serif;
      font-size: clamp(24px, 4vw, 36px);
      text-align: center;
      margin-bottom: 40px;
      color: #00F0FF;
      font-weight: 500;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
      letter-spacing: 1px;
    }
    
    .main-description {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 24px);
      text-align: center;
      max-width: 800px;
      line-height: 1.5;
      font-weight: 300;
      color: #FFFFFF;
      font-style: italic;
      letter-spacing: 0.5px;
    }
    
    @keyframes pulse {
      0% {
        filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
      }
      100% {
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
      }
    }
    
    .main-title::before, .main-title::after {
      content: attr(data-text);
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #FFFFFF, #00F0FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      top: 0;
      left: 0;
    }
    
    .main-title::before {
      left: 2px;
      text-shadow: -2px 0 #00F0FF;
      animation: glitch-1 2s infinite linear alternate-reverse;
    }
    
    .main-title::after {
      left: -2px;
      text-shadow: 2px 0 #00F0FF;
      animation: glitch-2 3s infinite linear alternate-reverse;
    }
    
    @keyframes glitch-1 {
      0%, 80%, 100% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
      }
      20%, 30% {
        clip-path: inset(8% 0 8% 0);
        opacity: 0.3;
      }
    }
    
    @keyframes glitch-2 {
      0%, 80%, 100% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
      }
      20%, 30% {
        clip-path: inset(8% 0 8% 0);
        opacity: 0.3;
      }
    }
    
    /* ===== SEÇÃO CLIENTES ===== */
    #clientes {
      background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    
    .clientes-content {
      padding-top: clamp(60px, 8vh, 100px);
      justify-content: flex-start;
    }
    
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: clamp(20px, 3vw, 30px);
      margin-top: 30px;
      position: relative;
      flex: 1;
      align-content: start;
    }
    
    .client-box {
      background: rgba(0, 30, 38, 0.3);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 5px;
      padding: clamp(20px, 3vw, 30px) 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
      position: relative;
      overflow: hidden;
      min-height: clamp(150px, 20vh, 180px);
    }
    
    .client-box:hover {
      border-color: #00F0FF;
      background: rgba(0, 30, 38, 0.5);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    }
    
    .client-video {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 15px;
      border: 1px solid rgba(0, 240, 255, 0.3);
    }
    
    .client-name {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 700;
      color: #00F0FF;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
      letter-spacing: 1px;
    }
    
    
    /* ===== SEÇÃO TECNOLOGIA ===== */
    #tecnologia {
      background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    }
    
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: clamp(30px, 4vw, 40px);
      margin-top: 40px;
    }
    
    .tech-item {
      background: rgba(0, 30, 38, 0.3);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 10px;
      padding: clamp(25px, 4vw, 35px);
      text-align: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
      position: relative;
      overflow: hidden;
    }
    
    .tech-item:hover {
      border-color: #00F0FF;
      background: rgba(0, 30, 38, 0.5);
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
    }
    
    .tech-icon {
      font-size: clamp(40px, 6vw, 60px);
      color: #00F0FF;
      margin-bottom: 20px;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
    }
    
    .tech-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 700;
      color: #00F0FF;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
      letter-spacing: 1px;
    }
    
    .tech-desc {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(14px, 1.8vw, 16px);
      line-height: 1.6;
      color: #CCCCCC;
      letter-spacing: 0.5px;
    }
    
    /* ===== SEÇÃO CASES ===== */
    #cases {
      background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
    }
    
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      grid-gap: clamp(30px, 4vw, 40px);
      margin-top: 40px;
    }
    
    .case-item {
      background: rgba(0, 30, 38, 0.3);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
      position: relative;
    }
    
    .case-item:hover {
      border-color: #00F0FF;
      background: rgba(0, 30, 38, 0.5);
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
    }
    
    .case-video {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    }
    
    .case-content {
      padding: clamp(20px, 3vw, 30px);
    }
    
    .case-badge {
      display: inline-block;
      background: linear-gradient(90deg, #00F0FF, #FFFFFF);
      color: #000000;
      font-family: 'Rajdhani', monospace, sans-serif;
      font-size: clamp(12px, 1.5vw, 14px);
      font-weight: 700;
      padding: 5px 15px;
      border-radius: 20px;
      margin-bottom: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    
    .case-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 22px);
      font-weight: 700;
      color: #00F0FF;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
      letter-spacing: 1px;
    }
    
    .case-desc {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(14px, 1.8vw, 16px);
      line-height: 1.6;
      color: #CCCCCC;
      letter-spacing: 0.5px;
    }
    
    /* ===== SEÇÃO PROCESSO ===== */
    #processo {
      background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    }
    
    .process-container {
      display: flex;
      flex-direction: column;
      gap: clamp(30px, 4vw, 40px);
      margin-top: 40px;
    }
    
    .process-step {
      background: rgba(0, 30, 38, 0.3);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 10px;
      padding: clamp(25px, 4vw, 35px);
      display: flex;
      align-items: center;
      gap: clamp(20px, 3vw, 30px);
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
      position: relative;
      overflow: hidden;
    }
    
    .process-step:hover {
      border-color: #00F0FF;
      background: rgba(0, 30, 38, 0.5);
      transform: translateX(10px);
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    }
    
    .step-number {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(36px, 6vw, 48px);
      font-weight: 900;
      color: #00F0FF;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
      min-width: clamp(60px, 8vw, 80px);
      text-align: center;
    }
    
    .step-content {
      flex: 1;
    }
    
    .step-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 700;
      color: #00F0FF;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .step-icon {
      font-size: clamp(20px, 3vw, 28px);
      color: #00F0FF;
    }
    
    .step-desc {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(14px, 1.8vw, 16px);
      line-height: 1.6;
      color: #CCCCCC;
      letter-spacing: 0.5px;
    }
    
    .glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
      opacity: 0.5;
      pointer-events: none;
      z-index: 0;
    }
    
    /* ===== SEÇÃO CONTATO ===== */
    #contato {
      background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    }
    
    .contato-title {
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(36px, 5vw, 48px);
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
      color: #00F0FF;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
      letter-spacing: 2px;
    }
    
    .contato-subtitle {
      font-family: 'Exo', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 24px);
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
      font-weight: 300;
      font-style: italic;
      letter-spacing: 1px;
      color: #cccccc;
    }
    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: clamp(40px, 6vw, 60px);
      margin-top: 40px;
      align-items: center;
    }
    
    .team-image {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      border: 2px solid rgba(0, 240, 255, 0.3);
    }
    
    .team-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .team-image:hover img {
      transform: scale(1.05);
    }
    
    .team-scan {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.8s ease;
    }
    
    .team-image:hover .team-scan {
      transform: translateX(100%);
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: clamp(20px, 3vw, 30px);
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: clamp(15px, 2.5vw, 20px);
      background: rgba(0, 30, 38, 0.3);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 8px;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }
    
    .contact-item:hover {
      border-color: #00F0FF;
      background: rgba(0, 30, 38, 0.5);
      transform: translateX(10px);
      box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
    }
    
    .contact-icon {
      font-size: clamp(20px, 3vw, 24px);
      color: #00F0FF;
      min-width: 30px;
      text-align: center;
    }
    
    .contact-text {
      font-family: 'Rajdhani', monospace, sans-serif;
      font-size: clamp(16px, 2vw, 18px);
      color: #FFFFFF;
      font-weight: 500;
      letter-spacing: 1px;
    }
    
    .cta-button {
      background: linear-gradient(90deg, #00F0FF, #FFFFFF);
      color: #000000;
      font-family: 'Orbitron', monospace, sans-serif;
      font-size: clamp(18px, 2.5vw, 22px);
      font-weight: 700;
      padding: clamp(15px, 2.5vw, 20px) clamp(30px, 5vw, 40px);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: clamp(30px, 5vw, 40px) auto 0;
      display: block;
      text-align: center;
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    }
    
    .cta-button:hover {
      background: linear-gradient(90deg, #FFFFFF, #00F0FF);
      transform: scale(1.05);
      box-shadow: 0 0 50px rgba(0, 240, 255, 0.8);
    }
    
    
    /* ===== RESPONSIVIDADE ===== */
    @media (max-width: 1024px) {
      /* Oculta os elementos HUD em telas menores para evitar sobreposição */
      .hud-element {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .section-content {
        padding: clamp(20px, 5vw, 40px); /* Ajusta o padding para telas menores */
      }
      
      .navigation-buttons {
        bottom: 80px;
        right: 20px;
        gap: 15px;
      }
      
      .nav-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }
      
      .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para tablets */
        grid-gap: 15px;
      }
      
      .tech-grid {
        grid-template-columns: 1fr; /* 1 coluna para tablets */
        grid-gap: 20px;
      }
      
      .cases-grid {
        grid-template-columns: 1fr; /* 1 coluna para tablets */
        grid-gap: 20px;
      }
      
      .contact-container {
        grid-template-columns: 1fr; /* 1 coluna para tablets */
        grid-gap: 20px;
      }
      
      .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      
      .step-number {
        min-width: auto;
      }
      
      .step-title {
        justify-content: center;
      }
    }
    
    @media (max-width: 480px) {
      .section-content {
        padding: clamp(15px, 4vw, 30px); /* Ajusta o padding para telas muito pequenas */
      }
      
      .navigation-buttons {
        bottom: 60px;
        right: 15px;
        gap: 10px;
      }
      
      .nav-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }
      
      .clients-grid {
        grid-template-columns: 1fr; /* 1 coluna para mobile */
        grid-gap: 15px;
      }
      
      .client-video {
        height: 150px;
      }
      
      .case-video {
        height: 150px;
      }
      
      .tech-item,
      .case-item,
      .contact-info,
      .process-step {
        padding: 20px;
      }
      
      .main-title {
        letter-spacing: 1px;
      }
      
      .section-title {
        letter-spacing: 1px;
      }
    }
    
    /* ===== APRIMORAMENTOS NA TELA DE LOADING ===== */
    
    /* Efeito de linha de varredura (Scanline) */
    .tactical-loading::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
      background-size: 100% 4px;
      animation: scanline 8s linear infinite;
      pointer-events: none;
      z-index: 1;
    }
    
    @keyframes scanline {
      0% {
        background-position: 0 0;
      }
      100% {
        background-position: 0 100vh;
      }
    }
    
    /* Efeito de Glitch no título */
    .loading-title.glitch {
      animation: loading-glitch 1.5s infinite;
    }
    
    @keyframes loading-glitch {
      0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
      }
      20% {
        transform: translate(-3px, 3px);
      }
      40% {
        transform: translate(3px, -3px);
      }
      60% {
        transform: translate(-3px, -3px);
      }
      80% {
        transform: translate(3px, 3px);
      }
    }
    
    /* Estilização do Terminal de Boot */
    #boot-log-container {
      position: absolute;
      bottom: 20px;
      left: 20px;
      width: calc(100% - 40px);
      max-width: 500px;
      height: 150px;
      background: rgba(0, 15, 20, 0.5);
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 5px;
      padding: 10px;
      overflow: hidden;
      font-family: 'Source Code Pro', monospace;
      font-size: 12px;
      color: #00F0FF;
      z-index: 11;
    }
    
    #boot-log {
      width: 100%;
      height: 100%;
      overflow-y: scroll;
      scrollbar-width: none; /* Firefox */
    }
    
    #boot-log::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    
    #boot-log .line {
      display: block;
      white-space: pre-wrap;
    }
    
    #boot-log .caret {
      display: inline-block;
      width: 8px;
      height: 14px;
      background: #00F0FF;
      animation: blink 0.7s infinite;
      vertical-align: middle;
    }
    
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    
    /* ===== OTIMIZAÇÃO DE ESPAÇAMENTO MOBILE PARA SEÇÃO CLIENTES ===== */
    
    /* Para telas de tablet (até 768px), onde a grade tem 2 colunas */
    @media (max-width: 768px) {
      #clientes .clients-grid {
        /* Aumenta o espaço vertical e horizontal entre os cards */
        grid-gap: 40px 20px; /* 40px vertical, 20px horizontal */
      }
    }
    
    /* Para telas de celular (até 480px), onde a grade tem 1 coluna */
    @media (max-width: 480px) {
      #clientes .clients-grid {
        /* Aumenta significativamente o espaço vertical entre os cards */
        grid-gap: 60px; /* Apenas o espaçamento vertical importa aqui */
      }
    }
