<style>
	 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #000000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Canvas para efeito Matrix */
        #matrix-canvas {
        position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.10; /* Reduzido para um efeito mais sutil */
        }

        /* Hero Section */
        .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #04073A 0%, #000000 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                transparent,
                transparent 5px,
                rgba(0, 255, 0, 0.03) 5px,
                rgba(0, 255, 0, 0.03) 6px
            );
            z-index: -1;
        }

        .logo-container {
            text-align: center;
            animation: fadeInUp 1.8s ease-out;
            position: relative;
        }

        .logo-container::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle, rgba(255,77,1,0.12) 0%, transparent 70%);
            z-index: -1;
        }

        .logo {
            width: 250px;
            height: 250px;
            filter: drop-shadow(0 0 40px rgba(255,77,1,0.4));
            animation: pulse 3.5s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.4)); }
            50% { transform: scale(1.06); filter: drop-shadow(0 0 50px rgba(0, 255, 0, 0.7)); }
            100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.4)); }
        }

        .slogan {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            color: #FF4D01;
            text-transform: uppercase;
            letter-spacing: 6px;
            margin-top: 30px;
            text-shadow: 0 0 20px #FF4D01, 0 0 8px #fff8;
            animation: glitch 2.5s infinite;
            position: relative;
        }

        .slogan::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: #00ff41;
            clip: rect(0, 900px, 0, 0);
            animation: glitch-clip 3s infinite linear alternate-reverse;
        }

        @keyframes glitch {
            0%, 100% { text-shadow: 0 0 25px rgba(0, 255, 0, 0.9), 2px 2px 10px rgba(0, 255, 0, 0.5); }
            25% { text-shadow: -3px 1px 20px rgba(255, 0, 0, 0.7), 3px -1px 20px rgba(0, 255, 255, 0.7); }
            50% { text-shadow: 3px -2px 25px rgba(0, 255, 0, 0.9), -2px 3px 10px rgba(0, 255, 0, 0.5); }
            75% { text-shadow: -2px 3px 20px rgba(255, 0, 0, 0.7), 2px -3px 20px rgba(0, 255, 255, 0.7); }
        }

        @keyframes glitch-clip {
            0% { clip: rect(0, 9999px, 0, 0); }
            100% { clip: rect(0, 9999px, 100px, 0); }
        }

        .hero-cta {
            font-size: 1.3rem;
            color: #fff;
            margin-top: 20px;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
            animation: fadeIn 2s ease-out 1s;
            animation-fill-mode: both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            animation: bounce 2.2s infinite ease-in-out;
            cursor: pointer;
        }

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

        /* Sections */
        .section {
            padding: 120px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            background: rgba(0, 10, 0, 0.5);
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                transparent,
                transparent 10px,
                rgba(0, 255, 0, 0.02) 10px,
                rgba(0, 255, 0, 0.02) 11px
            );
            z-index: -1;
            opacity: 0.5;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 25px;
            color: #FF4D01;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
        }

        .section-subtitle {
            text-align: center;
            color: #aaa;
            margin-bottom: 60px;
            font-size: 1.3rem;
            font-weight: 300;
        }

        /* About Section */
        .about-content {
            background: rgba(4,7,58, 0.92);
            border: 1px solid rgba(255,77,1, 0.18);
            border-radius: 12px;
            padding: 50px;
            backdrop-filter: blur(15px);
            box-shadow: 0 0 24px rgba(255,77,1,0.05);
            margin: 0 auto;
            max-width: 900px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .service-card {
            background: rgba(4,7,58, 0.92);
            border: 1px solid rgba(255,77,1, 0.18);
            border-radius: 15px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 24px rgba(255,77,1,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.15), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }

        .service-card:hover::before {
            animation: shine 0.6s ease-in-out;
            opacity: 1;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 50px rgba(0, 255, 0, 0.4);
            border-color: rgba(0, 255, 0, 0.8);
        }

        .service-icon {
            font-size: 3.5rem;
            color: #00ff41;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15);
        }

        .service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #00ff41;
        }

        .service-card p {
            color: #ddd;
            line-height: 1.6;
        }

        /* Features */
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .feature-item {
            text-align: center;
            padding: 25px;
            background: rgba(0, 255, 0, 0.02);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(0, 255, 0, 0.05);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 85px;
            height: 85px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #00ff41, #008800);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #000;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
        }

        .feature-item h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .feature-item p {
            color: #bbb;
            line-height: 1.5;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #00ff41, #008800);
            color: #000;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            margin-top: 30px;
            border: none;
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF4D01, #04073A);
            color: #fff;
            border: none;
            box-shadow: 0 0 14px #FF4D0188;
            animation: button-shine 2s infinite;
        }

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

        .cta-button:hover {
            transform: scale(1.08);
            box-shadow: 0 0 40px rgba(0, 255, 0, 0.9);
            background: linear-gradient(135deg, #fff, #FF4D01);
            color: #04073A;
                }

        /* Success Stories */
        .success-card {
            background: rgba(4,7,58, 0.92);
            border: 1px solid rgba(255,77,1, 0.18);
            border-left: 5px solid #FF4D01;
            padding: 35px;
            margin-bottom: 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 0 24px rgba(255,77,1,0.05);
        }

        .success-card:hover {
            background: rgba(0, 255, 0, 0.06);
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
        }

        .success-title {
            font-size: 1.4rem;
            color: #00ff41;
            margin-bottom: 18px;
            position: relative;
            padding-left: 20px;
        }

        .success-title::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #00ff41;
        }

        .success-card p {
            color: #ddd;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-form {
            max-width: 650px;
            margin: 0 auto;
            background: rgba(4,7,58, 0.92);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255,77,1, 0.18);
            box-shadow: 0 0 24px rgba(255,77,1,0.05);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            color: #00ff41;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            background: rgba(0, 255, 0, 0.03);
            border: 1px solid rgba(0, 255, 0, 0.25);
            border-radius: 6px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ff41;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
            background: rgba(0, 255, 0, 0.05);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .slogan {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .about-content {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .slogan {
                font-size: 2rem;
                letter-spacing: 3px;
            }
            .hero-cta {
                font-size: 1.1rem;
            }
            .section {
                padding: 80px 15px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .about-content {
                padding: 25px;
            }
            .contact-form {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 200px;
                height: 200px;
            }
            .slogan {
                font-size: 1.5rem;
                margin-top: 20px;
            }
            .section {
                padding: 60px 10px;
            }
            .section-title {
                font-size: 1.5rem;
                letter-spacing: 2px;
            }
            .cta-button {
                padding: 14px 30px;
                font-size: 0.9rem;
            }
            .contact-form {
                padding: 20px;
            }
            .form-group input, .form-group textarea {
                padding: 12px;
            }
        }
    </style>
