<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Efeitos de partículas */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(64, 224, 255, 0.8);
            border-radius: 50%;
            animation: float 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-30px) rotate(360deg); opacity: 0.6; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(64, 224, 255, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 10px rgba(64, 224, 255, 0.5));
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #40e0ff;
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #40e0ff, #4facfe);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Banner Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #40e0ff, #4facfe, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(64, 224, 255, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(64, 224, 255, 0.8)); }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Meta Logo no Hero */
        .meta-logo {
            width: 100px;
            height: auto;
            margin: 0 auto 1.5rem auto;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: block;
        }

        .meta-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #40e0ff, #4facfe);
            color: #0a0e27;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(64, 224, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(64, 224, 255, 0.6);
        }

        /* SEÇÃO DO VÍDEO VIMEO */
        .video-presentation {
            padding: 6rem 5% 3rem;
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.8));
        }

        .video-container {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .video-intro {
            margin-bottom: 3rem;
        }

        .video-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #40e0ff, #4facfe, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .video-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(64, 224, 255, 0.3);
            margin-bottom: 2rem;
        }

        .video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
            z-index: 5;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 15;
            background: rgba(0,0,0,0.3);
            border-radius: 15px;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        .thumbnail-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('video4.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 15px;
        }

        .play-button-clean {
            position: relative;
            z-index: 20;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(64, 224, 255, 0.9), rgba(79, 172, 254, 0.9));
            border: 3px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            animation: subtlePulse 2.5s infinite;
        }

        .play-button-clean:hover {
            transform: scale(1.15);
            background: linear-gradient(135deg, rgba(64, 224, 255, 1), rgba(79, 172, 254, 1));
        }

        @keyframes subtlePulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 
                    0 8px 32px rgba(64, 224, 255, 0.4),
                    0 0 0 0 rgba(64, 224, 255, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 
                    0 12px 40px rgba(64, 224, 255, 0.6),
                    0 0 0 20px rgba(64, 224, 255, 0);
            }
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .video-description {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(64, 224, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .video-description p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Seções de Serviços */
        .services {
            padding: 5rem 5%;
            position: relative;
            z-index: 10;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #40e0ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(45, 53, 97, 0.6));
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(64, 224, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(64, 224, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(64, 224, 255, 0.3);
            border-color: rgba(64, 224, 255, 0.6);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #40e0ff;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #40e0ff;
        }

        .service-card p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: rgba(10, 14, 39, 0.9);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(64, 224, 255, 0.3);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-item {
            color: #ffffff;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-item:hover {
            color: #40e0ff;
            opacity: 1;
            transform: translateY(-2px);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(64, 224, 255, 0.3), transparent);
            margin: 2rem 0;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }

            .meta-logo {
                width: 60px;
                margin: 0 auto 1rem auto;
            }

            .video-presentation {
                padding: 3rem 3% 2rem;
            }

            .video-title {
                font-size: 2rem;
            }

            .video-subtitle {
                font-size: 1rem;
            }

            .play-button-clean {
                width: 60px;
                height: 60px;
            }

            .play-icon {
                border-left-width: 16px;
                border-top-width: 10px;
                border-bottom-width: 10px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-contact {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Efeito de scroll suave */
        html {
            scroll-behavior: smooth;
        }

        /* Animações de entrada */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-presentation {
            animation: fadeInUp 1s ease;
        }
    </style>