        /* --- TELA DE INTRODUÇÃO --- */
        #intro-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 10000; /* Fica acima de TUDO */
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 1s ease, visibility 1s;
        }

        #intro-video {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ou 'cover' se quiser que o vídeo preencha tudo */
            max-width: 1200px; /* Limita largura para não estourar em telas gigantes */
        }

        /* Estado escondido (quando o vídeo acaba) */
        #intro-overlay.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        /* Botão de Pular */
        #skip-intro {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: 0.3s;
            z-index: 10001;
        }

        #skip-intro:hover {
            background: var(--azul-claro);
            border-color: var(--azul-claro);
        }

        /* Bloquear scroll enquanto o vídeo passa */
        body.intro-active {
            overflow: hidden;
        }
        /* --- 1. VARIÁVEIS E RESET --- */
        :root {
            --azul-profundo: #0A2540;
            --azul-claro: #00A3FF;
            --azul-brilho: #4cc9f0;
            --branco: #FFFFFF;
            --off-white: #F8F9FA;
            --cinza-texto: #4A5568;
            --sombra-card: 0 20px 40px rgba(0, 0, 0, 0.08);
            --sombra-hero: 0 10px 30px rgba(0, 163, 255, 0.4);
            --transicao: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { 
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }
        body { 
            font-family: 'Inter', sans-serif; 
            line-height: 1.6; 
            color: var(--azul-profundo); 
            overflow-x: hidden; 
            background-color: var(--branco);
            max-width: 100%;
            width: 100%;
        }
        
        /* Tipografia */
        h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; }
        p { color: var(--cinza-texto); font-weight: 400; }
        a { text-decoration: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* --- 2. HERO SECTION (Impacto Visual) --- */
        .hero {
            position: relative;
            background: #000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            overflow: hidden;
            text-align: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            pointer-events: none;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.78) 0%, rgba(0, 10, 20, 0.82) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content::before {
            content: "";
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: min(420px, 70vw);
            height: min(420px, 70vw);
            background: radial-gradient(circle, rgba(0, 163, 255, 0.28) 0%, rgba(0, 163, 255, 0.08) 45%, rgba(0, 163, 255, 0) 72%);
            filter: blur(10px);
            z-index: -1;
            pointer-events: none;
            animation: heroAuraPulse 4.5s ease-in-out infinite;
        }

       .logo-hero-main {
            width: clamp(250px, 40vw, 500px); 
            height: auto;
            margin-bottom: 2rem;
            /* Filtro inicial de brilho mais intenso */
            filter: drop-shadow(0 0 20px rgba(0, 163, 255, 0.6));
            
            /* Combinação de 3 animações: Entrada, Flutuação 3D e Brilho */
            animation: 
                logoEntrance 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards,
                logoFloat3D 6s ease-in-out infinite 1.5s,
                logoGlowBreath 4s ease-in-out infinite,
                logoShineSweep 5s linear infinite;
            
            perspective: 1000px;
            will-change: transform, filter;
        }

       /* 1. Entrada Impactante: Surge do fundo com brilho e escala */
        @keyframes logoEntrance {
            0% { 
                opacity: 0; 
                transform: scale(0.5) translateZ(-500px);
                filter: brightness(5) blur(10px) drop-shadow(0 0 50px var(--azul-claro));
            }
            100% { 
                opacity: 1; 
                transform: scale(1) translateZ(0);
                filter: brightness(1) blur(0) drop-shadow(0 0 20px rgba(0, 163, 255, 0.4));
            }
        }

        /* 2. Flutuação Cinematográfica: Movimento em 8 e inclinação leve */
        @keyframes logoFloat3D {
            0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
            25% { transform: translateY(-15px) rotateX(5deg) rotateY(2deg); }
            50% { transform: translateY(-5px) rotateX(-2deg) rotateY(-5deg); }
            75% { transform: translateY(-12px) rotateX(2deg) rotateY(3deg); }
        }

        /* 3. Respiração de Luz: O brilho azul "pulsa" como se estivesse vivo */
        @keyframes logoGlowBreath {
            0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.3)); }
            50% { filter: drop-shadow(0 0 35px rgba(0, 163, 255, 0.7)); }
        }

        @keyframes logoShineSweep {
            0%, 100% {
                filter: brightness(1) drop-shadow(0 0 18px rgba(0, 163, 255, 0.35));
            }
            45% {
                filter: brightness(1.08) drop-shadow(0 0 24px rgba(76, 201, 240, 0.55));
            }
            55% {
                filter: brightness(1.16) drop-shadow(0 0 36px rgba(255, 255, 255, 0.35));
            }
        }

        @keyframes heroAuraPulse {
            0%, 100% { opacity: 0.72; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
        }

        .logo-hero-main:hover {
            cursor: pointer;
            filter: brightness(1.2) drop-shadow(0 0 45px var(--azul-claro));
            transition: var(--transicao);
            transform: scale(1.05) translateZ(50px);
        }
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--branco);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 14px rgba(255,255,255,0.12), 0 0 28px rgba(0,163,255,0.2);
        }

        .text-gradient {
            background: linear-gradient(110deg, #dff5ff 15%, #ffffff 32%, #8fdcff 42%, #ffffff 52%, var(--azul-claro) 72%);
            background-size: 250% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShine 3.2s linear infinite;
        }

        @keyframes textShine {
            from { background-position: 120% 50%; }
            to { background-position: -120% 50%; }
        }

        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Botão CTA */
        .cta-btn {
            background: linear-gradient(135deg, var(--azul-claro), #0066cc);
            color: var(--branco);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: var(--transicao);
            box-shadow: 0 10px 25px rgba(0, 163, 255, 0.3);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -130%;
            width: 60%;
            height: 100%;
            background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.08) 70%, transparent 100%);
            transform: skewX(-20deg);
            animation: ctaShine 3.6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes ctaShine {
            0% { left: -130%; }
            55% { left: 170%; }
            100% { left: 170%; }
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 163, 255, 0.5);
            filter: brightness(1.1);
        }

        
        /* --- 3. SEÇÃO EQUIPE (VERSÃO ESTÁVEL) --- */
#sobre {
    padding: 6rem 0;
    background: var(--branco);
    text-align: center;
    overflow: hidden; /* Evita que a animação crie barra de rolagem */
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.team-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    transition: all 0.8s ease;
}

.avatar-item {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #FFF;
    overflow: visible; /* Para o nome aparecer fora da bola */
    background: #EEE;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ESTADO INICIAL: Juntinhos (Sobrepostos) */
    margin: 0 -40px; 
    z-index: 1;
    opacity: 0.5;
    transform: scale(0.9);
}

/* ESTADO ANIMADO: Quando você chega na seção */
.team-avatars.animated .avatar-item {
    margin: 0 15px; /* Espaço entre eles */
    opacity: 1;
    transform: scale(1);
}

/* Ajuste de Z-index para a sobreposição inicial ficar bonita */
.avatar-item:nth-child(1) { z-index: 3; }
.avatar-item:nth-child(2) { z-index: 2; }
.avatar-item:nth-child(3) { z-index: 1; }

/* Imagem dentro da bola */
.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* HOVER: Nome e Destaque */
.avatar-item:hover, .avatar-item.active {
    transform: translateY(-15px) scale(1.1) !important;
    z-index: 10 !important;
    border-color: var(--azul-claro);
    box-shadow: 0 15px 30px rgba(0,163,255,0.4);
}

.avatar-name {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #000;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.avatar-item:hover .avatar-name,
.avatar-item.active .avatar-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .avatar-item { width: 90px; height: 90px; margin: 0 -25px; }
    .team-avatars.animated .avatar-item { margin: 0 8px; }
}
        /* --- 4. SEÇÃO SERVIÇOS (Banners Vibrantes) --- */
        .services-section {
            padding: 6rem 0;
            background-color: var(--off-white);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--azul-profundo);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px; /* Mais espaço entre cards */
        }

        .service-card {
            background: var(--branco);
            padding: 3rem 2rem;
            border-radius: 24px;
            box-shadow: var(--sombra-card);
            transition: var(--transicao);
            text-align: center;
            position: relative;
            overflow: visible; /* Permite animação sair um pouco */
            border: 1px solid transparent;
        }

        /* Hover no Card */
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 163, 255, 0.15);
            border-color: rgba(0, 163, 255, 0.2);
        }

        /* Wrapper do Lottie */
        .icon-wrapper {
            width: 180px; /* BEM MAIOR (era 80/100px) */
            height: 180px;
            margin: 0 auto 10px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Fundo sutil em vez de bola sólida */
            background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            transition: var(--transicao);
        }
        
        /* CSS controla o canvas, ignorando atributos HTML antigos */
        .icon-wrapper canvas {
            width: 100% !important;
            height: 100% !important;
            filter: drop-shadow(0 5px 15px rgba(0, 163, 255, 0.2));
            transition: var(--transicao);
        }

        .service-card:hover .icon-wrapper canvas {
            transform: scale(1.1);
            filter: drop-shadow(0 10px 25px rgba(0, 163, 255, 0.4));
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--azul-profundo);
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Texto claro para o card 3D escuro */
        .service-card-3d h3 {
            color: #ffffff;
        }

        .service-card-3d p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* --- Card 3D ESPECIAL --- */
        .service-card-3d {
            background: linear-gradient(135deg, rgb(15, 20, 45) 0%, rgb(25, 30, 70) 35%, rgb(35, 15, 70) 60%, rgb(20, 25, 50) 100%);
            border: 2px solid rgba(76, 201, 240, 0.6);
            position: relative;
            overflow: hidden;
        }

        .service-card-3d::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(0, 163, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .service-card-3d::before {
            content: "✨ NEW";
            position: absolute;
            top: -10px;
            right: -30px;
            background: var(--azul-claro);
            color: #000;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 0.8rem;
        }

        .service-card-3d:hover {
            border-color: rgba(76, 201, 240, 0.9);
            box-shadow: 0 0 40px rgba(76, 201, 240, 0.6), inset 0 0 30px rgba(0, 163, 255, 0.1);
            background: linear-gradient(135deg, rgb(20, 28, 55) 0%, rgb(35, 42, 85) 35%, rgb(45, 25, 85) 60%, rgb(28, 35, 65) 100%);
        }

        .btn-3d {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 1.5rem;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--azul-claro), var(--azul-brilho));
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transicao);
            text-decoration: none;
            font-size: 0.95rem;
        }

        .btn-3d:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 163, 255, 0.4);
        }

        /* --- 5. SEÇÃO EXPERIÊNCIA 3D --- */
        .experiencia-3d-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--off-white) 0%, #f0f5ff 100%);
            position: relative;
            overflow: hidden;
        }

        .card-3d-destaque {
            max-width: 900px;
            margin: 0 auto 4rem;
            perspective: 1200px;
        }

        .card-3d-content {
            background: linear-gradient(135deg, rgb(15, 20, 45) 0%, rgb(25, 30, 70) 35%, rgb(35, 15, 70) 60%, rgb(20, 25, 50) 100%);
            border: 3px solid rgba(76, 201, 240, 0.8);
            padding: 8rem 3rem 3.5rem;
            border-radius: 28px;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 163, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 40px rgba(76, 201, 240, 0.3);
            animation: card3dFloat 5s ease-in-out infinite;
        }

        .card-3d-content::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .card-3d-icon {
            width: 180px;
            height: 180px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 50% 30%, rgba(76, 201, 240, 0.25) 0%, rgba(0, 163, 255, 0.15) 40%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            animation: iconGlow 4s ease-in-out infinite;
            box-shadow: 0 0 60px rgba(0, 163, 255, 0.3), inset 0 0 40px rgba(76, 201, 240, 0.1);
            position: relative;
            z-index: 2;
        }

        @keyframes iconGlow {
            0%, 100% { 
                filter: drop-shadow(0 5px 20px rgba(0, 163, 255, 0.4)) drop-shadow(0 0 15px rgba(76, 201, 240, 0.3));
                transform: scale(1);
            }
            50% { 
                filter: drop-shadow(0 8px 30px rgba(76, 201, 240, 0.6)) drop-shadow(0 0 25px rgba(0, 163, 255, 0.5));
                transform: scale(1.02);
            }
        }

        .card-3d-content h3 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 0 0 60px rgba(76, 201, 240, 1), 0 0 30px rgba(0, 163, 255, 0.9), 0 0 15px rgba(0, 198, 255, 0.8), 0 5px 20px rgba(0, 0, 0, 0.8);
            font-weight: 900;
            letter-spacing: -0.5px;
            word-spacing: 0.3em;
            background: linear-gradient(120deg, #00ffff 0%, #ffffff 50%, #00d4ff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShine 3s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 10;
        }

        @keyframes titleShine {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .card-3d-content h3 .highlight-3d {
            background: linear-gradient(120deg, #00d4ff 0%, #4cc9f0 50%, #00a3ff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glowText 2.5s ease-in-out infinite;
            font-weight: 900;
            text-shadow: none;
        }

        @keyframes glowText {
            0%, 100% {
                filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.6));
                background-position: 0% center;
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(76, 201, 240, 0.9));
                background-position: 100% center;
            }
        }

        .card-3d-content p {
            color: rgba(255, 255, 255, 1);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            text-shadow: 0 0 20px rgba(76, 201, 240, 0.5), 0 0 10px rgba(0, 163, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.6);
            font-weight: 600;
        }

        .btn-3d-destaque {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 50px;
            background: linear-gradient(135deg, var(--azul-claro), var(--azul-brilho));
            color: white;
            border: 2px solid rgba(76, 201, 240, 0.5);
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.05rem;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transicao);
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 163, 255, 0.5), 0 0 20px rgba(76, 201, 240, 0.3);
        }

        .btn-3d-destaque::before {
            content: "";
            position: absolute;
            top: 0;
            left: -130%;
            width: 60%;
            height: 100%;
            background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.1) 70%, transparent 100%);
            transform: skewX(-20deg);
            animation: ctaShine 3.6s ease-in-out infinite;
            pointer-events: none;
        }

        .btn-3d-destaque:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 163, 255, 0.7), 0 0 30px rgba(76, 201, 240, 0.5);
            background: linear-gradient(135deg, #00d4ff, #5fd9ff);
            border-color: rgba(76, 201, 240, 0.8);
        }

        @media (max-width: 1024px) {
            .card-3d-content {
                padding: 4rem 2.5rem 3rem;
            }

            .card-3d-icon {
                width: 160px;
                height: 160px;
                margin: -20px auto 1.2rem;
            }

            .card-3d-content h3 {
                font-size: 2rem;
                letter-spacing: 1.5px;
                text-shadow: 0 0 50px rgba(76, 201, 240, 0.9), 0 0 25px rgba(0, 163, 255, 0.8), 0 0 10px rgba(0, 198, 255, 0.7), 0 3px 15px rgba(0, 0, 0, 0.7);
            }
        }

        @media (max-width: 768px) {
            .card-3d-content {
                padding: 3rem 2rem 2.2rem;
            }

            .card-3d-icon {
                width: min(42vw, 150px);
                height: min(42vw, 150px);
                margin: 0 auto 1.2rem;
                box-shadow: 0 0 40px rgba(0, 163, 255, 0.2), inset 0 0 28px rgba(76, 201, 240, 0.08);
                overflow: hidden;
            }

            .card-3d-icon canvas {
                width: 100% !important;
                height: 100% !important;
                display: block;
            }

            .card-3d-content h3 {
                font-size: 1.5rem;
                letter-spacing: 1px;
                text-shadow: 0 0 40px rgba(76, 201, 240, 0.85), 0 0 20px rgba(0, 163, 255, 0.75), 0 0 8px rgba(0, 198, 255, 0.6), 0 3px 12px rgba(0, 0, 0, 0.7);
            }

            .card-3d-content p {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .btn-3d-destaque {
                padding: 10px 30px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .card-3d-content {
                padding: 2.5rem 1.5rem 1.8rem;
                border-radius: 50px;
            }

            .card-3d-icon {
                width: min(50vw, 140px);
                height: min(50vw, 140px);
                margin: 0 auto 0.8rem;
                box-shadow: 0 0 30px rgba(0, 163, 255, 0.18), inset 0 0 20px rgba(76, 201, 240, 0.06);
            }

            .card-3d-content h3 {
                font-size: 1.25rem;
                letter-spacing: 0.8px;
                text-shadow: 0 0 35px rgba(76, 201, 240, 0.8), 0 0 15px rgba(0, 163, 255, 0.7), 0 0 6px rgba(0, 198, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.7);
                margin-bottom: 0.5rem;
            }

            .card-3d-content p {
                font-size: 0.75rem;
                margin-bottom: 0.8rem;
                line-height: 1.4;
            }

            .btn-3d-destaque {
                padding: 8px 22px;
                font-size: 0.75rem;
                gap: 4px;
            }
        }

        /* --- 5. OUTRAS SEÇÕES (Por que / Contato) --- */
        .porque { padding: 6rem 0; background: var(--branco); }
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 3rem;
            perspective: 1200px;
        }
        .beneficio {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: var(--off-white);
            transition: var(--transicao);
            opacity: 0.7;
            transform-origin: center bottom;
            will-change: transform, opacity;
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, box-shadow 0.4s ease, background 0.4s ease;
        }

        /* Estado inicial: cartas empilhadas */
        #porque .beneficios-grid:not(.animated) .beneficio:nth-child(1) {
            transform: translateX(120%) rotate(-14deg) scale(0.92);
            z-index: 4;
        }

        #porque .beneficios-grid:not(.animated) .beneficio:nth-child(2) {
            transform: translateX(40%) rotate(-6deg) scale(0.95);
            z-index: 3;
        }

        #porque .beneficios-grid:not(.animated) .beneficio:nth-child(3) {
            transform: translateX(-40%) rotate(6deg) scale(0.95);
            z-index: 2;
        }

        #porque .beneficios-grid:not(.animated) .beneficio:nth-child(4) {
            transform: translateX(-120%) rotate(14deg) scale(0.92);
            z-index: 1;
        }

        /* Estado animado: cartas abertas */
        #porque .beneficios-grid.animated .beneficio {
            opacity: 1;
            transform: translateX(0) rotate(0deg) scale(1);
        }

        .beneficio:hover { transform: translateY(-10px); background: #fff; box-shadow: var(--sombra-card); }
        .beneficio i { font-size: 3rem; color: var(--azul-claro); margin-bottom: 1rem; }

        .contato {
            position: relative;
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--azul-profundo), #1e3a5f);
            color: var(--branco);
            text-align: center;
            overflow: hidden;
        }
        .contato form {
            max-width: 600px;
            margin: 3rem auto 0;
            display: grid;
            gap: 1.5rem;
        }
        .contato input, .contato textarea {
            width: 100%;
            padding: 1.2rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            color: #fff;
            backdrop-filter: blur(10px);
            font-size: 1rem;
        }
        .contato textarea { height: 150px; resize: vertical; }
        .contato input::placeholder, .contato textarea::placeholder { color: rgba(255,255,255,0.6); }
        .contato button { width: 100%; border: none; cursor: pointer; }

        /* Rodapé */
        .rodape {
            position: relative;
            background: #000;
            padding: 4rem 0;
            margin-top: -1px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            overflow: hidden;
        }

        .rodape-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            pointer-events: none;
        }

        .rodape::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .rodape::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            background: linear-gradient(180deg, rgba(30, 58, 95, 0.95) 0%, rgba(10, 37, 64, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
            box-shadow: inset 0 1px 0 rgba(76, 201, 240, 0.35);
            z-index: 1;
            pointer-events: none;
        }

        .rodape .container {
            position: relative;
            z-index: 2;
        }

        .logo-rodape { width: 180px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
        .rodape .logo-rodape {
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(76, 201, 240, 0.45));
            animation: footerLogoIntro 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, footerLogoFloatGlow 4.8s ease-in-out infinite 1s;
        }
        .rodape .frase-impacto {
            color: #ffffff;
            font-size: clamp(1.1rem, 2.4vw, 1.45rem);
            font-weight: 800;
            margin-bottom: 2rem;
            font-style: italic;
            text-shadow: 0 0 18px rgba(76, 201, 240, 0.45), 0 2px 10px rgba(0, 0, 0, 0.75);
            letter-spacing: 0.2px;
            animation: footerTextIntro 1s ease both 0.18s, footerTextPulse 4s ease-in-out infinite 1.2s;
        }
        .redes a {
            font-size: 1.8rem;
            color: #fff;
            margin: 0 10px;
            transition: 0.3s;
            text-shadow: 0 0 12px rgba(76, 201, 240, 0.4);
        }
        .redes a:hover {
            color: var(--azul-claro);
            transform: translateY(-2px) scale(1.08);
            text-shadow: 0 0 16px rgba(76, 201, 240, 0.8);
        }
        .rodape .direitos {
            font-size: 0.95rem;
            margin-top: 1rem;
            color: rgba(255, 255, 255, 0.82);
            font-weight: 600;
            letter-spacing: 0.2px;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
            animation: footerTextIntro 1s ease both 0.35s;
        }

        @keyframes footerLogoIntro {
            0% {
                opacity: 0;
                transform: translateY(14px) scale(0.92);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes footerLogoFloatGlow {
            0%, 100% {
                transform: translateY(0) scale(1);
                filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(76, 201, 240, 0.35));
            }
            50% {
                transform: translateY(-6px) scale(1.02);
                filter: brightness(0) invert(1) drop-shadow(0 0 28px rgba(76, 201, 240, 0.65));
            }
        }

        @keyframes footerTextIntro {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes footerTextPulse {
            0%, 100% {
                text-shadow: 0 0 14px rgba(76, 201, 240, 0.35), 0 2px 10px rgba(0, 0, 0, 0.75);
            }
            50% {
                text-shadow: 0 0 26px rgba(76, 201, 240, 0.65), 0 2px 14px rgba(0, 0, 0, 0.8);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            /* Avatars ajustados para mobile mas ainda grandes */
            .avatar-item { width: 110px; height: 110px; margin-left: -25px; border-width: 4px; }
            .team-container { height: 200px; }
            .icon-wrapper { width: 140px; height: 140px; }
            .service-card { padding: 2rem 1.5rem; }

            #porque .beneficios-grid:not(.animated) .beneficio:nth-child(1) {
                transform: translateX(60%) rotate(-12deg) scale(0.94);
            }

            #porque .beneficios-grid:not(.animated) .beneficio:nth-child(2) {
                transform: translateX(22%) rotate(-5deg) scale(0.97);
            }

            #porque .beneficios-grid:not(.animated) .beneficio:nth-child(3) {
                transform: translateX(-22%) rotate(5deg) scale(0.97);
            }

            #porque .beneficios-grid:not(.animated) .beneficio:nth-child(4) {
                transform: translateX(-60%) rotate(12deg) scale(0.94);
            }
        }

        /* WhatsApp */
        .whatsapp-float {
            position: fixed; bottom: 25px; right: 25px;
            background: #25D366; color: #fff;
            width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; box-shadow: 0 10px 25px rgba(37,211,102,0.4);
            z-index: 999; transition: var(--transicao);
        }
        .whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }
        @media (max-width: 600px) {
    .contato form div {
        grid-template-columns: 1fr !important;
    }
}