/* Efeito tecnológico rápido - não afeta o resto do site */
#tech-effect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999; /* Valor alto para ficar acima de tudo */
  pointer-events: none; /* Permite clicar nos elementos abaixo */
}

/* Linha de escaneamento rápido */
#tech-scan-line {
  position: fixed;
  top: 0;
  left: -10%;
  width: 10%;
  height: 100vh;
  background: linear-gradient(to right,
      transparent,
      rgba(0, 242, 255, 0.2),
      rgba(0, 242, 255, 0.5),
      rgba(0, 242, 255, 0.2),
      transparent);
  z-index: 999999;
  pointer-events: none;
  animation: techScanEffect 0.7s ease-out forwards;
}

@keyframes techScanEffect {
  to { left: 100%; }
}

/* Grade tecnológica temporária */
#tech-grid-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
      linear-gradient(rgba(0, 242, 255, 0.15) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 242, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 999998;
  pointer-events: none;
  opacity: 0;
  animation: techShowGrid 0.5s ease-in-out forwards;
}

@keyframes techShowGrid {
  0% { opacity: 0; }
  50% { opacity: 0.3; }
  100% { opacity: 0; }
}

/* Scanlines sutis */
#tech-scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px,
      transparent 2px
  );
  pointer-events: none;
  z-index: 999997;
  opacity: 0;
  animation: techFadeInScan 0.3s ease-in forwards 0.7s;
}

@keyframes techFadeInScan {
  to { opacity: 0.15; }
}

/* Esconde inicialmente o conteúdo e depois o revela */
body.tech-effect-active {
  opacity: 0;
  animation: techRevealContent 0.6s forwards 0.5s;
}

@keyframes techRevealContent {
  to { opacity: 1; }
}

        /* Variáveis de cores e definições globais */
        :root {
            --dark-blue: #0a0e1a;
            --blue: #0a2463;
            --cyan: #00eeff;
            --cyan-dark: #00b3c9;
            --black: #0a0a0a;
            --gradient: linear-gradient(135deg, var(--cyan) 0%, #0080ff 100%);
            --text-gradient: linear-gradient(90deg, var(--cyan) 0%, #80fbff 100%);
            --glass: rgba(10, 36, 99, 0.2);
            --glass-darker: rgba(5, 30, 62, 0.6);
        }

        /* Estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-blue);
            color: white;
            overflow-x: hidden;
            transition: background-color 0.5s ease;
        }

        /* Cursor personalizado */
        .cursor {
            width: 30px;
            height: 30px;
            border: 2px solid var(--cyan);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--cyan);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
            box-shadow: 0 0 15px var(--cyan);
        }

        /* Efeito futurista no cursor */
        .cursor::before, .cursor::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--cyan);
            top: 50%;
            transform: translateY(-50%);
            animation: cursorPulse 2s infinite alternate;
        }

        .cursor::before {
            left: -10px;
        }

        .cursor::after {
            right: -10px;
        }

        @keyframes cursorPulse {
            0% { opacity: 0.2; transform: translateY(-50%) scale(0.8); }
            100% { opacity: 1; transform: translateY(-50%) scale(1.2); }
        }

        /* Scrollbar personalizado */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-blue);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--cyan-dark);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--cyan);
        }

        /* Navbar */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.5s ease;
            
            border-bottom: 1px solid rgba(0, 238, 255, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--gradient);
            bottom: -8px;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

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

        .logo:hover::after {
            width: 100%;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: var(--cyan);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--cyan);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--cyan);
            font-size: 1.5rem;
            cursor: none;
        }

        /* Animated Tech Background */
        .tech-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .tech-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image:
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .tech-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--cyan);
            box-shadow: 0 0 10px var(--cyan);
            opacity: 0;
            animation: particleAnimation 10s linear infinite;
        }

        @keyframes particleAnimation {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(10vh) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }
        }

        .data-stream {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 10px;
            color: rgba(0, 255, 255, 0.2);
            white-space: nowrap;
            animation: dataFlow 15s linear infinite;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUpIn 1s ease forwards;
        }

        @keyframes fadeUpIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 50%, #0080ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #a0a0a0;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
            color: var(--cyan);
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: "💻";
            font-size: 16px;
        }

        .hero-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            100% {
                left: 100%;
            }
        }

        .typed-text {
            font-family: 'Courier New', monospace;
            color: var(--cyan);
            margin-bottom: 2rem;
            height: 30px;
            display: flex;
            align-items: center;
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient);
            color: var(--dark-blue);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 238, 255, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 238, 255, 0.5);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeSlideIn 1s ease forwards 0.3s;
        }

        @keyframes fadeSlideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .code-window {
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 238, 255, 0.2);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .code-window:hover {
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        }

        .code-window::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.03), transparent);
            animation: shimmer 3s linear infinite;
        }

        .window-header {
            display: flex;
            gap: 8px;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .window-dot:nth-child(1) { background: #ff5f56; }
        .window-dot:nth-child(2) { background: #ffbd2e; }
        .window-dot:nth-child(3) { background: #27c93f; }

        .code-window:hover .window-dot:nth-child(1) { transform: scale(1.2); }
        .code-window:hover .window-dot:nth-child(2) { transform: scale(1.2); animation-delay: 0.1s; }
        .code-window:hover .window-dot:nth-child(3) { transform: scale(1.2); animation-delay: 0.2s; }

        .code-content {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
        }

        .code-line {
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInCode 0.5s ease forwards;
        }

        .code-line:nth-child(1) { animation-delay: 0.1s; }
        .code-line:nth-child(2) { animation-delay: 0.2s; }
        .code-line:nth-child(3) { animation-delay: 0.3s; }
        .code-line:nth-child(4) { animation-delay: 0.4s; }
        .code-line:nth-child(5) { animation-delay: 0.5s; }
        .code-line:nth-child(6) { animation-delay: 0.6s; }
        .code-line:nth-child(7) { animation-delay: 0.7s; }
        .code-line:nth-child(8) { animation-delay: 0.8s; }

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

        .code-keyword { color: #c792ea; }
        .code-string { color: #c3e88d; }
        .code-function { color: #82aaff; }
        .code-comment { color: #546e7a; }

        /* Holographic floating cards */
        .holo-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 8px;
            padding: 1rem;
            font-size: 0.875rem;
            
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 238, 255, 0.2);
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .holo-card:nth-child(3) {
            top: 20%;
            left: -15%;
            animation-delay: 0s;
        }

        .holo-card:nth-child(4) {
            bottom: 20%;
            right: -10%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-20px) translateX(10px) rotate(2deg); }
            75% { transform: translateY(20px) translateX(-10px) rotate(-2deg); }
        }

        /* Phone Feature Section */
        .phone-feature {
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, rgba(0, 128, 255, 0.1), transparent 70%);
        }

        .phone-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 2rem;
        }

        .phone-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .phone-subtitle {
            color: #a0a0a0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .phone-showcase {
            position: relative;
            height: 600px;
            width: 100%;
            perspective: 1000px;
        }

        .phone-model {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: 560px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 36px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 238, 255, 0.3);
            overflow: hidden;
            z-index: 2;
            transition: transform 0.5s ease;
            animation: phoneFloat 6s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-20px); }
        }

        .phone-screen {
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            bottom: 12px;
            background: var(--dark-blue);
            border-radius: 28px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 30px;
            background: #1a1a1a;
            border-radius: 0 0 20px 20px;
            z-index: 3;
        }

        .phone-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: linear-gradient(to bottom, rgba(0, 128, 255, 0.1), rgba(0, 238, 255, 0.1));
        }

        .phone-app-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
            border-radius: 15px;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .phone-app-name {
            color: white;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .phone-app {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Floating icons around phone */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 25%;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--cyan);
            font-size: 24px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 238, 255, 0.2);
            animation: iconFloat 8s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            left: 30%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 30%;
            right: 25%;
            animation-delay: 1s;
        }

        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 25%;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(4) {
            bottom: 20%;
            right: 30%;
            animation-delay: 3s;
        }

        .floating-icon:nth-child(5) {
            top: 50%;
            left: 15%;
            animation-delay: 4s;
        }

        .floating-icon:nth-child(6) {
            top: 50%;
            right: 15%;
            animation-delay: 5s;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0) scale(1) rotate(0deg);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 238, 255, 0.2);
            }
            50% {
                transform: translateY(-30px) scale(1.1) rotate(10deg);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 238, 255, 0.4);
            }
        }

        /* Circular orbit effect */
        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            border: 1px dashed rgba(0, 255, 255, 0.2);
            border-radius: 50%;
            animation: rotateOrbit 30s linear infinite;
        }

        .orbit:nth-child(1) {
            width: 300px;
            height: 300px;
            animation-duration: 20s;
        }

        .orbit:nth-child(3) {
            width: 450px;
            height: 450px;
            animation-duration: 25s;
        }

        @keyframes rotateOrbit {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Payment Section with more style */
        .payment-section {
            text-align: center;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 238, 255, 0.05));
            border-radius: 20px;
            margin: 5rem auto;
            max-width: 1200px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 238, 255, 0.1);
            
            border: 1px solid rgba(0, 255, 255, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .payment-section.active {
            transform: translateY(0);
            opacity: 1;
        }

        .payment-section h3 {
            font-size: 2.5rem;
            color: var(--cyan);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            text-align: center;
            line-height: 1.35;
        }

        .payment-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .payment-section p {
            color: #a0a0a0;
            margin-bottom: 3rem;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .payment-options {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .payment-option {
            background: rgba(15, 23, 42, 0.8);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            width: 280px;
            position: relative;
            overflow: hidden;
        }

        .payment-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .payment-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 238, 255, 0.2);
            border-color: var(--cyan);
        }

        .payment-option:hover::before {
            transform: scaleX(1);
        }

        .payment-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .payment-icon::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .payment-option:hover .payment-icon::after {
            width: 80px;
            height: 80px;
            background: rgba(0, 255, 255, 0.2);
        }

        .exclusive-badge {
            display: block;
            width: fit-content;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, rgba(0,238,255,0.1), rgba(0,128,255,0.1));
            border: 1px solid rgba(0,238,255,0.45);
            color: var(--cyan);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 0.5rem 1.6rem;
            border-radius: 50px;
            animation: pulse-badge 2.5s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 10px rgba(0,238,255,0.2); }
            50% { box-shadow: 0 0 25px rgba(0,238,255,0.5), 0 0 50px rgba(0,128,255,0.2); }
        }

        .payment-section .highlight-word {
            background: linear-gradient(135deg, var(--cyan), #0080ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .payment-highlight {
            color: #b0b8c8;
            font-size: 1.15rem;
            line-height: 1.85;
            max-width: 560px;
            margin: 1.5rem auto 2.5rem;
        }

        .exclusive-cta {
            font-size: 1.05rem;
            padding: 1.1rem 3rem;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        /* Services Section */
        .services {
            padding: 7rem 0;
            position: relative;
            overflow: hidden;
            background: rgba(10, 14, 26, 0.8);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-header h2 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #ffffff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .section-header p {
            color: #a0a0a0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            padding: 0 2rem;
        }

        .service-card {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card.active {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleY(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--cyan);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 238, 255, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            display: inline-block;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon::after {
            width: 80px;
            height: 80px;
            background: rgba(0, 255, 255, 0.2);
        }

        .service-card h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover h3 {
            color: var(--cyan);
        }

        .service-card p {
            color: #a0a0a0;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            color: #a0a0a0;
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--cyan);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-features li::before {
            transform: scale(1.2);
        }

        .service-card:hover .service-features li {
            color: #ffffff;
            transform: translateX(5px);
        }

        /* Benefits Section */
        .benefits {
            padding: 7rem 0;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 255, 255, 0.05));
            position: relative;
            overflow: hidden;
        }

        .benefits-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            padding: 0 2rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2.5rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            
            transform: translateY(50px);
            opacity: 0;
        }

        .benefit-card.active {
            transform: translateY(0);
            opacity: 1;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 255, 255, 0.05));
            top: 100%;
            left: 0;
            transition: top 0.5s ease;
            z-index: -1;
        }

        .benefit-card:hover::before {
            top: 0;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--cyan);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 238, 255, 0.2);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .benefit-icon::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
        }

        .benefit-card:hover .benefit-icon::after {
            width: 90px;
            height: 90px;
            background: rgba(0, 255, 255, 0.2);
        }

        .benefit-card h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover h3 {
            color: var(--cyan);
        }

        .benefit-card p {
            color: #a0a0a0;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .benefit-card:hover p {
            color: #ffffff;
        }
            /* INÍCIO DA NOVA SEÇÃO - Carrossel de Depoimentos */
    .testimonials-section {
        padding: 7rem 0;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at center, rgba(0, 128, 255, 0.1), transparent 70%);
    }

    .testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

    .testimonials-carousel {
        position: relative;
        margin-top: 4rem;
        overflow: hidden;
        padding: 2rem 0;
    }

.testimonials-track {
    display: flex;
    position: relative; /* Adicione esta linha */
    width: 100%;
    min-height: 400px; /* Ajuste conforme necessário para acomodar seus slides */
}

    .testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    position: absolute; /* Adicione esta linha */
    left: 0; /* Adicione esta linha */
    top: 0; /* Adicione esta linha */
    width: 100%; /* Adicione esta linha */
    visibility: hidden; /* Adicione esta linha */
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible; /* Adicione esta linha */
}

    .testimonial-card {
        background: rgba(15, 23, 42, 0.7);
       border: 1px solid rgba(0, 255, 255, 0.2);
       border-radius: 20px;
       padding: 3rem;
        width: 100%;
        max-width: 800px;
       text-align: center;
       position: relative;
       overflow: hidden;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 238, 255, 0.15);
       
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: var(--gradient);
    }

.testimonial-card::after {
    content: "\201D"; /* Usando o código Unicode para aspas curvas */
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 10rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(0, 255, 255, 0.1);
    z-index: 0;
}

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .testimonial-text {
        font-size: 1.25rem;
        color: #ffffff;
       line-height: 1.7;
       margin-bottom: 2rem;
       position: relative;
       font-style: italic;
    }

    .testimonial-author {
       color: var(--cyan);
      font-size: 1.2rem;
       font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .testimonial-company {
        color: #a0a0a0;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-stars {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .star {
       font-size: 1.5rem;
      color: #FFD700; /* Gold color for stars */
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
      animation: starPulse 3s infinite alternate;
    }

    @keyframes starPulse {
       0% { transform: scale(1); }
       100% { transform: scale(1.2); }
    }

    .star:nth-child(1) { animation-delay: 0s; }
    .star:nth-child(2) { animation-delay: 0.3s; }
    .star:nth-child(3) { animation-delay: 0.6s; }
    .star:nth-child(4) { animation-delay: 0.9s; }
    .star:nth-child(5) { animation-delay: 1.2s; }

/* Carousel Controls */
    .testimonial-controls {
        display: flex;
        justify-content: center;
        align-items: center;
     gap: 1.5rem;
     margin-top: 3rem;
    }

    .testimonial-arrow {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: rgba(15, 23, 42, 0.8);
     border: 1px solid rgba(0, 255, 255, 0.3);
      color: var(--cyan);
      font-size: 1.5rem;
      display: flex;
      justify-content: center;
     align-items: center;
     cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .testimonial-arrow:hover {
      transform: translateY(-5px);
     background: rgba(15, 23, 42, 0.9);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 238, 255, 0.3);
       border-color: var(--cyan);
    }

    .testimonial-indicators {
      display: flex;
      gap: 0.8rem;
    }

    .testimonial-dot {
     width: 12px;
     height: 12px;
      border-radius: 50%;
      background: rgba(0, 255, 255, 0.2);
      border: 1px solid rgba(0, 255, 255, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
    }

    .testimonial-dot.active {
      background: var(--cyan);
      transform: scale(1.2);
      box-shadow: 0 0 15px var(--cyan);
    }

    .testimonial-dot:hover {
        transform: scale(1.2);
    }

/* Floating Elements */
    .testimonial-float {
      position: absolute;
       width: 80px;
     height: 80px;
      border-radius: 50%;
     background: rgba(15, 23, 42, 0.6);
     border: 1px solid rgba(0, 255, 255, 0.2);
     display: flex;
      justify-content: center;
      align-items: center;
       font-size: 2rem;
       color: var(--cyan);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 238, 255, 0.2);
      animation: float 8s ease-in-out infinite;
      z-index: 0;
    }

    .testimonial-float:nth-child(1) {
       top: 10%;
       left: 10%;
      animation-delay: 0s;
    }

    .testimonial-float:nth-child(2) {
      bottom: 15%;
      right: 10%;
       animation-delay: 2s;
    }

    .testimonial-float:nth-child(3) {
        top: 50%;
       right: 15%;
       animation-delay: 4s;
    }

/* Data lines effect */
    .testimonial-data-lines {
      position: absolute;
     top: 0;
     left: 0;
      width: 100%;
      height: 100%;
       pointer-events: none;
       z-index: 0;
    }

    .data-line {
       position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
       animation: dataLineScan 8s linear infinite;
    }

    .data-line:nth-child(1) {
       top: 20%;
       left: -100%;
       width: 100%;
        animation-delay: 0s;
    }

    .data-line:nth-child(2) {
      top: 40%;
      left: -100%;
      width: 80%;
      animation-delay: 2s;
    }

    .data-line:nth-child(3) {
       top: 60%;
       left: -100%;
       width: 60%;
       animation-delay: 4s;
    }

    .data-line:nth-child(4) {
       top: 80%;
        left: -100%;
       width: 40%;
       animation-delay: 6s;
    }

@keyframes dataLineScan {
        0% { left: -100%; }
        100% { left: 100%; }
    }
/* FIM DA NOVA SEÇÃO - Carrossel de Depoimentos */

        /* Enhanced Digital Experience Section - NOVA SEÇÃO INTEGRADA */
        .digital-experience {
            padding: 10rem 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at center top, rgba(0, 128, 255, 0.15), rgba(0, 238, 255, 0.05) 50%, transparent 80%);
        }

        .experience-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header h2.big-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, var(--cyan), #0080ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            position: relative;
        }

        .section-header h2.big-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gradient);
            border-radius: 4px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% { box-shadow: 0 0 10px var(--cyan); }
            100% { box-shadow: 0 0 20px var(--cyan), 0 0 30px var(--cyan); }
        }

        .experience-container .section-header p.section-subtitle {
            color: #c8d0e0;
            font-size: 0.95rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0.5px;
            max-width: 620px;
            display: block;
            text-align: center;
            margin: 0 auto 3rem;
            line-height: 2;
        }

        .tech-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 16px;
            
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--cyan);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 238, 255, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--cyan);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #a0a0a0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Main showcase area */
        .showcase-area {
            display: grid;
            grid-template-columns: 1fr 400px 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        /* Computer Section (Left) */
        .computer-showcase {
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .computer-model {
            position: relative;
            width: 450px;
            height: 300px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 12px 12px 0 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 238, 255, 0.2);
            overflow: hidden;
            animation: computerFloat 8s ease-in-out infinite;
        }

        @keyframes computerFloat {
            0%, 100% { transform: translateY(0) rotateY(0deg); }
            25% { transform: translateY(-15px) rotateY(2deg); }
            75% { transform: translateY(15px) rotateY(-2deg); }
        }

        .computer-screen {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 50px;
            background: var(--dark-blue);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .screen-header {
            background: rgba(0, 255, 255, 0.1);
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }

        .screen-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .screen-dot:nth-child(1) { background: #ff5f56; }
        .screen-dot:nth-child(2) { background: #ffbd2e; }
        .screen-dot:nth-child(3) { background: #27c93f; }

        .screen-content {
            flex: 1;
            padding: 20px;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 238, 255, 0.05));
            position: relative;
            overflow: hidden;
        }

        .computer-stand {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 80px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
        }

        .computer-base {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 20px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        /* Information particles coming out of screen */
        .info-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
        }

        .info-particle {
            position: absolute;
            padding: 8px 12px;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            font-size: 12px;
            color: var(--cyan);
            font-family: 'Courier New', monospace;
            animation: particleFlow 6s linear infinite;
            opacity: 0;
            
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        @keyframes particleFlow {
            0% {
                opacity: 0;
                transform: translateY(0) translateX(0) scale(0.8);
            }
            10% {
                opacity: 1;
                transform: translateY(-20px) translateX(-10px) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(-200px) translateX(-50px) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-250px) translateX(-60px) scale(0.8);
            }
        }

        .info-particle:nth-child(1) {
            top: 30%;
            left: 10%;
            animation-delay: 0s;
        }

        .info-particle:nth-child(2) {
            top: 50%;
            left: 30%;
            animation-delay: 1s;
        }

        .info-particle:nth-child(3) {
            top: 70%;
            left: 20%;
            animation-delay: 2s;
        }

        .info-particle:nth-child(4) {
            top: 40%;
            left: 70%;
            animation-delay: 0.5s;
        }

        .info-particle:nth-child(5) {
            top: 60%;
            left: 80%;
            animation-delay: 1.5s;
        }

        .info-particle:nth-child(6) {
            top: 20%;
            left: 60%;
            animation-delay: 2.5s;
        }

        /* Tablet Section (Right) */
        .tablet-showcase {
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tablet-model {
            position: relative;
            width: 350px;
            height: 500px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 238, 255, 0.2);
            overflow: hidden;
            animation: tabletFloat 7s ease-in-out infinite;
            transform: rotateY(-15deg) rotateX(5deg);
            transform-style: preserve-3d;
        }

        @keyframes tabletFloat {
            0%, 100% {
                transform: rotateY(-15deg) rotateX(5deg) translateY(0);
            }
            50% {
                transform: rotateY(-15deg) rotateX(5deg) translateY(-25px);
            }
        }

        .tablet-screen {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            background: var(--dark-blue);
            border-radius: 16px;
            overflow: hidden;
        }

        .tablet-content {
            padding: 30px;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.08), rgba(0, 238, 255, 0.08));
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tablet-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .tablet-title {
            color: var(--cyan);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .tablet-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            flex: 1;
        }

        .tablet-widget {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            animation: widgetPulse 4s ease-in-out infinite;
        }

        .tablet-widget:nth-child(even) { animation-delay: 0.5s; }

        @keyframes widgetPulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.02); opacity: 1; }
        }

        .widget-icon {
            font-size: 24px;
            color: var(--cyan);
            margin-bottom: 8px;
        }

        .widget-title {
            color: white;
            font-size: 12px;
            margin-bottom: 5px;
        }

        .widget-value {
            color: var(--cyan);
            font-size: 16px;
            font-weight: 600;
        }

        /* Data streams around tablet */
        .tablet-data-streams {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
        }

        .tablet-data-streams .data-stream {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 11px;
            color: rgba(0, 255, 255, 0.6);
            white-space: nowrap;
            animation: streamFlow 8s linear infinite;
            opacity: 0;
        }

        @keyframes streamFlow {
            0% {
                opacity: 0;
                transform: translateX(-50px) translateY(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
                transform: translateX(400px) translateY(-20px);
            }
            100% {
                opacity: 0;
                transform: translateX(450px) translateY(-30px);
            }
        }

        .tablet-data-streams .data-stream:nth-child(1) {
            top: 20%;
            animation-delay: 0s;
        }

        .tablet-data-streams .data-stream:nth-child(2) {
            top: 40%;
            animation-delay: 2s;
        }

        .tablet-data-streams .data-stream:nth-child(3) {
            top: 60%;
            animation-delay: 4s;
        }

        .tablet-data-streams .data-stream:nth-child(4) {
            top: 80%;
            animation-delay: 6s;
        }

        /* Features grid below showcase */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 6rem;
        }

        .feature-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            border-color: var(--cyan);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 238, 255, 0.3);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--cyan);
            position: relative;
            display: inline-block;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon::after {
            width: 100px;
            height: 100px;
            background: rgba(0, 255, 255, 0.2);
        }

        .feature-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-title {
            color: var(--cyan);
        }

        .feature-description {
            color: #a0a0a0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            text-align: left;
        }

        .feature-list li {
            color: #a0a0a0;
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--cyan);
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-list li {
            color: white;
            transform: translateX(5px);
        }

        .feature-card:hover .feature-list li::before {
            transform: scale(1.2);
        }

        /* FAQ Section */
        .faq {
            padding: 7rem 0;
            background: rgba(10, 14, 26, 0.9);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .faq-item.active {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.1rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover, .faq-question.active {
            background: rgba(0, 255, 255, 0.05);
            color: var(--cyan);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--cyan);
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 300px;
        }

        .faq-answer p {
            color: #a0a0a0;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 7rem 0;
            background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 255, 255, 0.05));
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .contact-info.active {
            transform: translateX(0);
            opacity: 1;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .contact-info p {
            color: #a0a0a0;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: #a0a0a0;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 1.8rem;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .contact-form {
            background: rgba(15, 23, 42, 0.8);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            
            transform: translateX(50px);
            opacity: 0;
            transition: all 0.6s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .contact-form.active {
            transform: translateX(0);
            opacity: 1;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #ffffff;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(10, 14, 26, 0.9);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 8px;
            color: #ffffff;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--gradient);
            color: var(--dark-blue);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 100;
            transform: scale(0);
            animation: popIn 0.5s ease forwards 1s;
        }

        @keyframes popIn {
            0% { transform: scale(0); }
            70% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        /* Footer */
        .footer {
            background: rgba(10, 14, 26, 0.98);
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-text {
            color: #a0a0a0;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-line {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            margin: 2rem 0;
        }

        .copyright {
            color: #a0a0a0;
            font-size: 0.9rem;
        }

        .footer-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(0, 255, 255, 0.05), transparent);
            z-index: -1;
        }

        .footer-animation::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            animation: footerScan 3s linear infinite;
        }

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

        /* Responsive Design */
        @media (max-width: 1200px) {
            .showcase-area {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }

            .computer-model, .tablet-model {
                transform: none;
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                gap: 3rem;
            }

            .phone-showcase {
                height: 500px;
            }

            .orbit:nth-child(1) {
                width: 250px;
                height: 250px;
            }

            .orbit:nth-child(3) {
                width: 350px;
                height: 350px;
            }

            .floating-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(10, 14, 26, 0.98);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s ease;
                
                border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                padding: 1rem 0;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

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

            .code-window {
                max-width: 400px;
                margin: 0 auto;
            }

            .holo-card {
                display: none;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-info {
                text-align: center;
            }

            .contact-info h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

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

            .payment-options {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .services-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .tech-stats {
                gap: 2rem;
                flex-direction: column;
                align-items: center;
            }

            .showcase-area {
                gap: 3rem;
            }

            .computer-model {
                width: 350px;
                height: 240px;
            }

            .phone-model {
                width: 240px;
                height: 480px;
            }

            .tablet-model {
                width: 280px;
                height: 400px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .floating-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .orbit:nth-child(1) {
                width: 250px;
                height: 250px;
            }

            .orbit:nth-child(2) {
                width: 350px;
                height: 350px;
            }

            .orbit:nth-child(3) {
                width: 450px;
                height: 450px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .phone-model {
                width: 220px;
                height: 440px;
            }

            .phone-showcase {
                height: 400px;
            }

            .orbit:nth-child(1) {
                width: 200px;
                height: 200px;
            }

            .orbit:nth-child(3) {
                width: 300px;
                height: 300px;
            }

            .floating-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .computer-model {
                width: 280px;
                height: 180px;
            }

            .tablet-model {
                width: 240px;
                height: 320px;
            }

            .feature-card {
                padding: 2rem;
            }
        }

        /* ===== MOBILE FIXES COMPLETOS ===== */
        @media (max-width: 768px) {

            /* Payment Section */
            .payment-section {
                margin: 3rem 1rem;
                padding: 3rem 1.5rem;
            }
            .payment-section h3 {
                font-size: 1.6rem;
                line-height: 1.4;
            }
            .exclusive-badge {
                font-size: 0.7rem;
                padding: 0.45rem 1.2rem;
                letter-spacing: 2px;
            }
            .payment-highlight {
                font-size: 1rem;
            }

            /* FAQ Section */
            .faq {
                padding: 4rem 0;
            }
            .faq-container {
                padding: 0 1rem;
            }
            .faq-question {
                font-size: 0.95rem;
                padding: 1.2rem 1rem;
                gap: 0.5rem;
            }
            .faq-answer p {
                font-size: 0.9rem;
            }

            /* Footer */
            .footer {
                padding: 2.5rem 0 1.5rem;
            }
            .footer-container {
                padding: 0 1.5rem;
            }
            .footer-logo {
                font-size: 1.5rem;
            }
            .footer-text {
                font-size: 0.9rem;
                max-width: 100%;
            }
            .copyright {
                font-size: 0.8rem;
            }

            /* Testimonials */
            .testimonials-section {
                padding: 4rem 0;
            }
            .testimonial-card {
                padding: 2rem 1.5rem;
                max-width: 100%;
            }
            .testimonial-card::after {
                font-size: 6rem;
                top: 10px;
                right: 15px;
            }
            .testimonial-text {
                font-size: 1rem;
            }
            .testimonial-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .testimonial-float {
                display: none;
            }

            /* Services / Benefits grids */
            .services-grid {
                grid-template-columns: 1fr;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            /* About section orbs */
            .orb-1, .orb-2 {
                display: none;
            }

            /* Feature cards */
            .feature-card {
                width: 100%;
                max-width: 100%;
            }

            /* Digital Experience subtitle */
            .experience-container .section-header p.section-subtitle {
                font-size: 1.1rem;
                max-width: 100%;
                padding: 0 1rem;
            }

            /* Section header big-title */
            .section-header h2.big-title {
                font-size: 2.2rem;
            }

            /* Contact info h3 */
            .contact-info h3 {
                font-size: 1.6rem;
            }

            /* Tech stats */
            .tech-stats {
                gap: 1.2rem;
            }
            .stat-item {
                padding: 1rem;
                width: 130px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {

            /* Payment section */
            .payment-section {
                margin: 2rem 0.75rem;
                padding: 2.5rem 1.2rem;
                border-radius: 14px;
            }
            .payment-section h3 {
                font-size: 1.35rem;
            }

            /* FAQ */
            .faq-question {
                font-size: 0.88rem;
            }

            /* Footer */
            .footer-logo {
                font-size: 1.3rem;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 1.5rem 1rem;
            }
            .testimonials-carousel {
                padding: 1rem 0;
            }

            /* Section header */
            .section-header h2.big-title {
                font-size: 1.8rem;
            }

            /* Stats em 2 colunas no lugar de coluna única */
            .tech-stats {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                flex-direction: unset;
            }
            .stat-item {
                width: 100%;
            }

            /* Contact form */
            .contact-form input,
            .contact-form textarea,
            .contact-form select {
                font-size: 0.9rem;
                padding: 0.8rem;
            }

            /* Digital Experience subtitle */
            .experience-container .section-header p.section-subtitle {
                font-size: 1rem;
            }
        }

/* Efeito tecnológico rápido - versão final */
#tech-v15-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647; /* Máximo possível */
    pointer-events: none;
    overflow: hidden;
}

#tech-v15-scanline {
    position: fixed;
    top: 0;
    left: -10%;
    width: 10%;
    height: 100%;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 242, 255, 0.2),
        rgba(0, 242, 255, 0.8),
        rgba(0, 242, 255, 0.2),
        transparent);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
    z-index: 2147483647; /* Máximo possível */
    pointer-events: none;
}

#tech-v15-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2147483646;
    pointer-events: none;
    opacity: 0;
}
    /* Variáveis CSS */
        :root {
            /* Cores Principais */
            --color-primary: #00eeff;
            --color-primary-dark: #00b3c9;
            --color-secondary: #0080ff;
            --color-accent: #FFD700;

            /* Cores de Background */
            --bg-primary: #0a0e1a;
            --bg-secondary: #0f1729;
            --bg-tertiary: rgba(15, 23, 42, 0.8);

            /* Cores de Texto */
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #6b7280;

            /* Gradientes */
            --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            --gradient-text: linear-gradient(135deg, #ffffff, var(--color-primary));
            --gradient-cta: linear-gradient(135deg, rgba(0, 128, 255, 0.2), rgba(0, 238, 255, 0.2));

            /* Espaçamento */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --space-3xl: 6rem;

            /* Tipografia */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

            /* Tamanhos de Fonte */
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 2rem;
            --text-4xl: 2.5rem;
            --text-5xl: 3rem;

            /* Bordas */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;

            /* Sombras */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
            --shadow-glow: 0 0 20px rgba(0, 238, 255, 0.3);
            --shadow-glow-intense: 0 0 30px rgba(0, 238, 255, 0.5);

            /* Transições */
            --transition-fast: 150ms ease;
            --transition-base: 300ms ease;
            --transition-slow: 500ms ease;
        }

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

        body {
            font-family: var(--font-primary);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        h3 {
            font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
            color: var(--text-primary);
        }

        p {
            color: var(--text-secondary);
            margin-bottom: var(--space-sm);
            line-height: 1.7;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }

        a:hover {
            color: var(--color-primary-dark);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Botões */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-sm) var(--space-xl);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: var(--text-base);
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left var(--transition-slow);
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--bg-primary);
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 238, 255, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-secondary:hover {
            background: rgba(0, 238, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-header h2 {
            position: relative;
            display: inline-block;
            margin-bottom: var(--space-md);
            background: var(--gradient-text);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }

        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            font-size: var(--text-lg);
        }


        /* Timeline */
        .timeline {
            background: linear-gradient(to bottom, rgba(10, 14, 26, 0.95), rgba(10, 14, 26, 0.9));
            padding: var(--space-3xl) 0;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        .timeline-steps {
            position: relative;
            margin-bottom: var(--space-3xl);
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 238, 255, 0.8), rgba(0, 128, 255, 0.8));
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            margin-bottom: var(--space-3xl);
            opacity: 0;
            transform: translateY(30px);
            transition: all var(--transition-slow);
        }

        .timeline-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-number {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            font-weight: bold;
            font-size: var(--text-2xl);
            box-shadow: var(--shadow-glow);
            z-index: 1;
            transition: all var(--transition-base);
        }

        .timeline-content {
            width: 45%;
            padding: var(--space-xl);
            background: rgba(10, 20, 40, 0.6);
            border: 1px solid rgba(0, 238, 255, 0.15);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(5px);
            margin-top: var(--space-md);
            transition: all var(--transition-base);
            cursor: pointer;
        }

        /* Hover effect para os cards da timeline */
        .timeline-item:hover .timeline-content {
            transform: translateY(-5px) scale(1.03);
            border-color: var(--color-primary);
            box-shadow: var(--shadow-glow-intense);
            background: rgba(15, 30, 60, 0.7);
        }

        /* Hover effect para os números da timeline */
        .timeline-item:hover .timeline-number {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 0 30px rgba(0, 238, 255, 0.7);
        }

        /* Hover effect para os textos dentro dos cards */
        .timeline-item:hover .timeline-title {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 238, 255, 0.5);
        }

        .timeline-item:hover .timeline-text,
        .timeline-item:hover .timeline-features li {
            color: #e0e0e0;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: auto;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
        }

        .timeline-title {
            font-size: var(--text-2xl);
            color: var(--color-primary);
            margin-bottom: var(--space-md);
            transition: all var(--transition-base);
        }

        .timeline-text {
            color: var(--text-secondary);
            margin-bottom: var(--space-md);
            transition: all var(--transition-base);
        }

        .timeline-features {
            list-style: none;
        }

        .timeline-features li {
            color: var(--text-secondary);
            padding-left: var(--space-lg);
            position: relative;
            margin-bottom: var(--space-sm);
            transition: all var(--transition-base);
        }

        .timeline-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--color-primary);
            font-weight: bold;
        }

        .timeline-item:hover .timeline-features li::before {
            color: #00eeff;
            text-shadow: 0 0 8px rgba(0, 238, 255, 0.7);
        }

        /* CTA Section - Highlighted but more compact */
        .cta-section {
            background: var(--gradient-cta);
            border-radius: var(--radius-lg);
            padding: var(--space-lg) var(--space-lg);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 238, 255, 0.3);
            
            animation: glow 3s ease-in-out infinite;
            transform: translateZ(0); /* Para melhor performance */
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 238, 255, 0.3), 0 0 15px rgba(0, 238, 255, 0.1);
            }
            50% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 238, 255, 0.5), 0 0 30px rgba(0, 238, 255, 0.3);
            }
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 238, 255, 0.1) 0%, transparent 60%);
            opacity: 0.8;
            animation: rotateBg 30s linear infinite;
            z-index: -1;
        }

        @keyframes rotateBg {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
        }

        .cta-heading {
            font-size: var(--text-2xl);
            margin-bottom: var(--space-sm);
            position: relative;
            display: inline-block;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-heading::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }

        .cta-text {
            font-size: var(--text-base);
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            margin-top: var(--space-md);
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        /* Utilities */
        .text-center { text-align: center; }
        .mt-4 { margin-top: var(--space-xl); }
        .mb-3 { margin-bottom: var(--space-lg); }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all var(--transition-slow);
        }
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .timeline-content {
                width: 80%;
                margin-left: auto !important;
                margin-right: 0 !important;
            }

            .timeline-line {
                left: 40px;
                transform: none;
            }

            .timeline-number {
                left: 40px;
                transform: none;
            }

            .timeline-item:hover .timeline-number {
                transform: scale(1.1);
            }
        }

        @media (max-width: 480px) {
            :root {
                --space-3xl: 4rem;
                --space-2xl: 3rem;
                --space-xl: 2rem;
            }

            .timeline-content {
                width: 90%;
                padding: var(--space-md);
            }

            .cta-buttons {
                flex-direction: column;
                gap: var(--space-md);
            }

            .btn {
                width: 100%;
                margin: 0;
            }
        }
                /* Estilos base compatíveis com o design futurístico existente */
        :root {
            --accent-color: #3cffd0;
            --accent-glow: rgba(60, 255, 208, 0.3);
            --dark-bg: #0a0e17;
            --card-bg: #111827;
            --card-bg-hover: #172032;
            --text-color: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --grid-line: rgba(60, 255, 208, 0.05);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .sobre-nos-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(60, 255, 208, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(60, 255, 208, 0.03) 0%, transparent 50%);
        }

        /* Grid background effect */

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

        .heading-container {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-subtitle {
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
            padding: 0 15px;
        }

        .section-subtitle:before, .section-subtitle:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: var(--accent-color);
        }

        .section-subtitle:before {
            left: -30px;
        }

        .section-subtitle:after {
            right: -30px;
        }

        .section-title {
            font-size: 3rem;
            margin: 0.5rem 0 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .feature-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            perspective: 1000px;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 16px;
            width: 320px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(60, 255, 208, 0.1);
            box-shadow:
                0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(60, 255, 208, 0.05) inset;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: var(--card-bg-hover);
            border-color: rgba(60, 255, 208, 0.3);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(60, 255, 208, 0.1) inset;
        }

        .feature-card:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(60, 255, 208, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover:after {
            opacity: 0.05;
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .feature-card:hover:before {
            transform: scaleX(1);
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            background: rgba(60, 255, 208, 0.05);
            position: relative;
        }

        .icon-wrapper:before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(45deg, transparent, var(--accent-color), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .card-icon {
            font-size: 2.2rem;
            color: var(--accent-color);
            filter: drop-shadow(0 0 8px var(--accent-glow));
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1rem 0;
            color: #ffffff;
        }

        .card-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Decorative elements */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.15;
            z-index: -1;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-color);
            top: 2%;
            left: -10%;
            animation: float 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 200px;
            height: 200px;
            background: var(--accent-color);
            bottom: 10%;
            right: -5%;
            animation: float 18s ease-in-out infinite reverse;
        }

        .glow-line {
            position: absolute;
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            top: 50%;
            left: 0;
            opacity: 0.2;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 50%;
            filter: blur(1px);
            opacity: 0.3;
        }

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

        /* Add floating particles with CSS */
        @keyframes float-particle {
            0% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(10px); }
            100% { transform: translateY(0) translateX(0); }
        }

        /* Generate random particles */
        .particle:nth-child(1) { top: 10%; left: 20%; animation: float-particle 10s infinite; }
        .particle:nth-child(2) { top: 40%; left: 80%; animation: float-particle 15s infinite; }
        .particle:nth-child(3) { top: 80%; left: 15%; animation: float-particle 12s infinite; }
        .particle:nth-child(4) { top: 30%; left: 60%; animation: float-particle 18s infinite; }
        .particle:nth-child(5) { top: 70%; left: 40%; animation: float-particle 14s infinite; }
        .particle:nth-child(6) { top: 15%; left: 70%; animation: float-particle 11s infinite; }
        .particle:nth-child(7) { top: 55%; left: 30%; animation: float-particle 13s infinite; }
        .particle:nth-child(8) { top: 85%; left: 75%; animation: float-particle 16s infinite; }

        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .feature-cards {
                flex-wrap: wrap;
                justify-content: center;
            }

            .feature-card {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .feature-card {
                width: 100%;
                max-width: 350px;
            }
        }

        /* Interactive indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-secondary);
            opacity: 0.7;
        }

        .scroll-down-arrow {
            margin-top: 8px;
            width: 20px;
            height: 30px;
            border: 2px solid var(--accent-color);
            border-radius: 10px;
            position: relative;
        }

        .scroll-down-arrow:after {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            width: 4px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 2px;
            transform: translateX(-50%);
            animation: scroll-indicator 2s infinite;
        }

        @keyframes scroll-indicator {
            0% { top: 6px; opacity: 1; }
            50% { top: 16px; opacity: 0; }
            100% { top: 6px; opacity: 1; }
        }