        /* Mobile Responsive for Hero Person Image - Avatar Approach */
        @media (max-width: 1023px) {
            /* Hide the large person image panel on mobile - avatar replaces it */
            .section-hero .relative.lg\:h-\[600px\] {
                display: none;
            }
            
            /* Hide bottom fade since we removed the image */
            .section-hero > .absolute.bottom-0.left-0.right-0.h-32 {
                display: none;
            }
            
            /* Mobile Avatar Styling Enhancements */
            .section-hero .lg\:hidden img[src="pessoa.png"] {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: center 15% !important;
            }
        }
        
        /* Base Background System */
        body { 
            background-color: #09090b; 
            color: #e4e4e7;
        }
        
        /* Global Section Background Pattern */
        .section-base {
            position: relative;
            background: linear-gradient(180deg, #09090b 0%, #0c0c0f 50%, #09090b 100%);
        }
        
        .section-base::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 40%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 40px 40px;
            pointer-events: none;
            z-index: 0;
        }
        
        /* Section variations */
        .section-hero::before {
            background-image: 
                radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(#27272a 1px, transparent 1px);
            background-size: 100% 100%, 30px 30px;
        }
        
        .section-services::before {
            background-image: 
                radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 40px 40px;
        }
        
        .section-offer::before {
            background-image: 
                radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.02) 0%, transparent 40%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 40px 40px;
        }
        
        .section-dream::before {
            background-image: 
                radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 40px 40px;
        }
        
        .section-cases::before {
            background-image: 
                radial-gradient(circle at 25% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
                radial-gradient(circle at 75% 70%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 40px 40px;
        }
        
        .section-method::before {
            background-image: 
                radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 40px 40px;
        }
        
        .section-contact::before {
            background-image: 
                radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
                radial-gradient(#1f1f24 1px, transparent 1px);
            background-size: 100% 100%, 40px 40px;
        }
        
        /* Content always above background */
        .section-base > * {
            position: relative;
            z-index: 1;
        }
        
        /* Smooth transitions between sections */
        .section-base {
            transition: background 0.5s ease;
        }
        .glass-panel {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .is-segment-hidden {
            display: none !important;
        }
        .text-glow {
            text-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
        }
        .text-stroke {
            -webkit-text-stroke: 1px rgba(255,255,255,0.3);
            color: transparent;
        }
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #09090b; }
        ::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #2563eb; }
        
        .perspective-1000 { perspective: 1000px; }
        
        /* Bento Grid Hover Effects */
        .bento-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
            border-color: rgba(37, 99, 235, 0.4);
        }
        .bento-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(to bottom right, rgba(255,255,255,0.1), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        /* Marquee Fade Mask */
        .fade-mask {
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        
        /* Infinite Masonry Cascade Grid */
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            max-height: 800px;
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        @media (min-width: 768px) {
            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .masonry-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1280px) {
            .masonry-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Infinite Scroll Columns */
        .cascade-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .cascade-column-scroll-up {
            animation: scroll-up 30s linear infinite;
        }
        .cascade-column-scroll-down {
            animation: scroll-down 35s linear infinite;
        }
        .cascade-column-scroll-up-slow {
            animation: scroll-up 40s linear infinite;
        }
        .cascade-column-scroll-down-slow {
            animation: scroll-down 45s linear infinite;
        }
        
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        
        @keyframes scroll-down {
            0% { transform: translateY(-50%); }
            100% { transform: translateY(0); }
        }
        
        .cascade-column:hover .cascade-column-scroll-up,
        .cascade-column:hover .cascade-column-scroll-down,
        .cascade-column:hover .cascade-column-scroll-up-slow,
        .cascade-column:hover .cascade-column-scroll-down-slow {
            animation-play-state: paused;
        }
        
        /* Speech Bubble Effect */
        .speech-bubble {
            position: relative;
        }
        .speech-bubble::before {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 12px solid rgba(255, 255, 255, 0.05);
        }
        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid rgba(24, 24, 27, 0.9);
        }
        
        /* Glow Effects */
        .glow-border {
            position: relative;
        }
        .glow-border::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), transparent, rgba(37, 99, 235, 0.3));
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .glow-border:hover::before {
            opacity: 1;
        }
        
        /* Floating Animation */
        @keyframes float-subtle {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        .float-1 { animation: float-subtle 4s ease-in-out infinite; }
        .float-2 { animation: float-subtle 5s ease-in-out infinite 0.5s; }
        .float-3 { animation: float-subtle 6s ease-in-out infinite 1s; }
        .float-4 { animation: float-subtle 4.5s ease-in-out infinite 1.5s; }
        
        /* Very subtle float for hero image */
        @keyframes subtle-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
        }
        .animate-subtle-float {
            animation: subtle-float 5s ease-in-out infinite;
        }
        
        /* Gentle badge float */
        @keyframes badge-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-4px) rotate(0.5deg); }
        }
        .animate-badge-float {
            animation: badge-float 4s ease-in-out infinite;
        }
        
        /* Slow pulse for glow effects */
        @keyframes pulse-slow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.02); }
        }
        .animate-pulse-slow {
            animation: pulse-slow 4s ease-in-out infinite;
        }
        
        /* Entrance Animation */
        @keyframes cascade-in {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        .cascade-item {
            opacity: 0;
            animation: cascade-in 0.6s ease-out forwards;
        }
        .cascade-item:nth-child(1) { animation-delay: 0.1s; }
        .cascade-item:nth-child(2) { animation-delay: 0.2s; }
        .cascade-item:nth-child(3) { animation-delay: 0.3s; }
        .cascade-item:nth-child(4) { animation-delay: 0.4s; }
        .cascade-item:nth-child(5) { animation-delay: 0.5s; }
        .cascade-item:nth-child(6) { animation-delay: 0.6s; }
        .cascade-item:nth-child(7) { animation-delay: 0.7s; }
        .cascade-item:nth-child(8) { animation-delay: 0.8s; }
        .cascade-item:nth-child(9) { animation-delay: 0.9s; }
        .cascade-item:nth-child(10) { animation-delay: 1s; }
        .cascade-item:nth-child(11) { animation-delay: 1.1s; }
        .cascade-item:nth-child(12) { animation-delay: 1.2s; }
        
        /* 3D Tilt Effect */
        .tilt-card {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }
        .tilt-card:hover {
            transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(10px);
        }
        
        /* Sparkle Effect */
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }
        .sparkle {
            animation: sparkle 2s ease-in-out infinite;
        }
        /* Initials Avatar Badge */
        .initials-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid rgba(37, 99, 235, 0.3);
            flex-shrink: 0;
        }

        .initials-avatar-sm {
            width: 48px;
            height: 48px;
            font-size: 1rem;
        }

        /* Consultation Cards Hover Effects */
        .consult-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(to bottom right, rgba(255,255,255,0.1), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        @keyframes consult-card-in {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .consult-card {
            animation: consult-card-in 0.6s ease-out forwards;
            opacity: 0;
        }

        .consult-card:nth-child(1) { animation-delay: 0.1s; }
        .consult-card:nth-child(2) { animation-delay: 0.3s; }
        .consult-card:nth-child(3) { animation-delay: 0.5s; }

        .consult-card:hover {
            box-shadow: 0 0 40px rgba(37, 99, 235, 0.1);
        }

        @media (max-width: 768px) {
            .consult-card {
                animation: none;
                opacity: 1;
            }
            
            .consult-card:hover {
                transform: none;
            }
        }

    </style>

        @keyframes marquee-esteira {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee-esteira {
            animation: marquee-esteira 25s linear infinite;
            width: max-content;
        }
        .animate-marquee-esteira:hover {
            animation-play-state: paused;
        }
        
        /* Logo Marquee - High Quality Rendering */
        .logo-marquee {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            transform: translateZ(0);
            backface-visibility: hidden;
            will-change: transform;
        }
        
        .logo-marquee:hover {
            filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
        }
    </style>

            @media (min-width: 1024px) {
                .accordion-wrapper:hover .group:not(:hover) {
                    filter: grayscale(100%) brightness(0.4);
                    opacity: 0.6;
                }
                .text-shadow-glow {
                    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
                }
            }
        </style>
