
        /* === Variáveis Globais === */
        :root {
            --primary-bg: #000000;
            --secondary-bg: #121212;
            --card-bg: #1A1A1A; /* Um pouco mais claro para cards */
            --primary-text: #FFFFFF;
            --secondary-text: #B0B0B0;
            --accent-color: #9F67FF;
            --accent-color-hover: #bf88ff;
            --border-radius-small: 8px;
            --border-radius-medium: 12px;
            --font-primary: 'Poppins', sans-serif;
            --transition-speed: 0.3s;
        }

        /* === Reset Básico e Estilos Globais === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px; /* Base para REMs */
        }

        body {
            background-color: var(--primary-bg);
            color: var(--primary-text);
            font-family: var(--font-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden; /* Prevenir scroll horizontal indesejado */
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

        a:hover {
            color: var(--accent-color-hover);
        }

        img, video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section {
            padding: 80px 0;
            overflow: hidden; /* Para conter animações AOS */
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-text);
            margin-bottom: 50px;
            font-weight: 600;
        }
        .section-title span {
            color: var(--accent-color);
        }

        /* === Botões === */
        .button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            padding: 14px 32px;
            border: none;
            border-radius: var(--border-radius-medium);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all var(--transition-speed) ease;
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
        }

        .button:hover {
            background-color: var(--accent-color-hover);
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 4px 15px rgba(159, 103, 255, 0.3);
        }

        /* === Header e Navegação === */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente */
            backdrop-filter: blur(10px); /* Efeito de vidro fosco */
            z-index: 1000;
            transition: background-color var(--transition-speed) ease;
        }
        .header.scrolled {
            background-color: rgba(18, 18, 18, 0.95); /* Fundo mais opaco ao rolar */
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-text);
        }
        .logo span {
            color: var(--accent-color);
        }
        .nav-links {
            list-style: none;
            display: flex;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: var(--primary-text);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width var(--transition-speed) ease;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .menu-toggle {
            display: none; /* Escondido em desktop */
            color: var(--primary-text);
            font-size: 1.5rem;
            cursor: pointer;
        }


        /* === Hero Section === */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding-top: 80px; /* Para compensar header fixo */
        }
        .video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            z-index: -2; /* Atrás do overlay */
            object-fit: cover;
        }
        .hero::after { /* Overlay escuro sobre o vídeo */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
            z-index: -1;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            color: var(--primary-text);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--secondary-text);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-social-links {
            margin-top: 30px;
        }
        .hero-social-links a {
            color: var(--secondary-text);
            font-size: 1.5rem;
            margin: 0 15px;
            transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
        }
        .hero-social-links a:hover {
            color: var(--accent-color);
            transform: scale(1.2);
        }


        /* === Serviços Section === */
        #servicos {
            background-color: var(--secondary-bg);
        }
        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .servico-card {
            background-color: var(--card-bg);
            padding: 35px 30px;
            border-radius: var(--border-radius-medium);
            text-align: center;
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            border: 1px solid transparent; /* Para efeito de borda no hover */
        }
        .servico-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(159, 103, 255, 0.1);
            border-color: var(--accent-color);
        }
        .servico-card .icon {
            font-size: 3rem; /* Placeholder para Lottie/SVG */
            color: var(--accent-color);
            margin-bottom: 20px;
            height: 60px; /* Altura fixa para o ícone */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Exemplo de SVG como ícone (substitua pelo seu Lottie ou SVG) */
        .servico-card .icon svg {
            width: 50px;
            height: 50px;
            fill: var(--accent-color);
        }
        .servico-card h3 {
            font-size: 1.4rem;
            color: var(--primary-text);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .servico-card p {
            font-size: 0.9rem;
            color: var(--secondary-text);
        }

        /* === Depoimentos Section === */
        .depoimento-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius-medium);
            text-align: center;
            height: 100%; /* Para SwiperJS */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .depoimento-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px auto;
            border: 3px solid var(--accent-color);
        }
        .depoimento-card h4 {
            font-size: 1.1rem;
            color: var(--primary-text);
            margin-bottom: 5px;
            font-weight: 600;
        }
        .depoimento-card .cliente-info {
            font-size: 0.85rem;
            color: var(--secondary-text);
            margin-bottom: 15px;
        }
        .depoimento-card p {
            font-size: 0.95rem;
            color: var(--secondary-text);
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .estrelas {
            color: #FFD700; /* Amarelo para estrelas */
            font-size: 1.1rem;
        }
        .estrelas .fa-star.empty {
            color: #444; /* Estrela vazia */
        }
        /* SwiperJS Styles */
        .swiper-container {
            width: 100%;
            padding-top: 20px;
            padding-bottom: 50px; /* Espaço para paginação */
        }
        .swiper-pagination-bullet {
            background-color: var(--secondary-text);
            opacity: 0.7;
        }
        .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
            opacity: 1;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--accent-color);
            transition: transform 0.2s ease;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .swiper-button-next, .swiper-button-prev {
                display: none; /* Ocultar setas em mobile, usar swipe */
            }
        }


        /* === Sobre Nós Section === */
        #sobre {
            background-color: var(--secondary-bg);
        }
        .sobre-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .sobre-texto {
            flex: 1;
            min-width: 300px;
        }
        .sobre-texto h3 {
            font-size: 1.8rem;
            color: var(--primary-text);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .sobre-texto p {
            font-size: 1rem;
            color: var(--secondary-text);
            margin-bottom: 20px;
        }
        .sobre-imagem {
            flex: 1;
            min-width: 300px;
            max-width: 500px; /* Limitar tamanho da imagem */
            margin: 0 auto;
        }
        .sobre-imagem img {
            border-radius: var(--border-radius-medium);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }


        /* === Contato Section === */
        .contato-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }
        .contato-form, .contato-info {
            flex: 1;
            min-width: 300px;
        }
        .contato-form h3, .contato-info h3 {
            font-size: 1.8rem;
            color: var(--primary-text);
            margin-bottom: 20px;
            font-weight: 600;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            color: var(--secondary-text);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: var(--border-radius-small);
            border: 1px solid #333;
            background-color: var(--card-bg);
            color: var(--primary-text);
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: border-color var(--transition-speed) ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contato-info p {
            font-size: 1rem;
            color: var(--secondary-text);
            margin-bottom: 15px;
        }
        .contato-info .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--secondary-text);
        }
        .contato-info .info-item i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-right: 15px;
            width: 20px; /* Alinhamento */
            text-align: center;
        }
        .contato-info .social-links-contato a {
            color: var(--secondary-text);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
        }
        .contato-info .social-links-contato a:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        #form-message {
            margin-top: 15px;
            font-size: 0.9rem;
        }
        #form-message.success {
            color: #4CAF50; /* Verde para sucesso */
        }
        #form-message.error {
            color: #F44336; /* Vermelho para erro */
        }

        /* === Rodapé === */
        .footer {
            background-color: var(--secondary-bg);
            padding: 60px 0 30px 0;
            text-align: center;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-text);
            margin-bottom: 15px;
        }
        .footer-logo span {
            color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .footer-links li {
            margin: 0 15px;
        }
        .footer-links a {
            color: var(--secondary-text);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .footer-social {
            margin-bottom: 20px;
        }
        .footer-social a {
            color: var(--secondary-text);
            font-size: 1.3rem;
            margin: 0 10px;
            transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
        }
        .footer-social a:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        .copyright {
            font-size: 0.85rem;
            color: #777; /* Cinza mais escuro para copyright */
        }


        /* === Botão WhatsApp Flutuante === */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25D366; /* Cor oficial do WhatsApp */
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px; /* Tamanho do ícone */
            box-shadow: 2px 2px 8px rgba(0,0,0,0.25);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-speed) ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        .whatsapp-float i {
            margin-top: 1px; /* Ajuste fino do ícone */
        }


        /* === Media Queries para Responsividade === */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 15px; /* Ajustar base para telas menores */
            }
            .menu-toggle {
                display: block; /* Mostrar menu hamburguer */
            }
            .nav-links {
        position: absolute;
        top: 100%; /* Abaixo do header */
        left: 0;
        width: 100%;
        background-color: var(--secondary-bg);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        padding: 0;
        display: flex; /* Mantém o layout flexível mesmo escondido */
    }

    .nav-links.active {
        max-height: 300px; /* Altura suficiente para os links */
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .servicos-grid {
                grid-template-columns: 1fr; /* Uma coluna em mobile */
            }
            .sobre-content {
                flex-direction: column;
            }
            .sobre-imagem {
                order: -1; /* Imagem acima do texto em mobile */
                margin-bottom: 30px;
            }
            .contato-wrapper {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .button {
                padding: 12px 28px;
                font-size: 0.85rem;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
        }