 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background-color: #000000;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Floating Impact Icons - Simplified to 4 icons */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 120;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            opacity: 0.06;
            transition: all 0.3s ease;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-direction: alternate;
        }

        /* Different sizes for variety */
        .floating-icon.size-small {
            width: 50px;
            height: 50px;
        }

        .floating-icon.size-medium {
            width: 70px;
            height: 70px;
        }

        .floating-icon.size-large {
            width: 90px;
            height: 90px;
        }

        /* Strategic positioning - 2 left, 2 right */
        .floating-icon.icon-1 {
            top: 20%;
            left: 5%;
            animation: floatSlow 8s infinite;
        }

        .floating-icon.icon-2 {
            top: 65%;
            left: 8%;
            animation: floatMedium 6s infinite;
        }

        .floating-icon.icon-3 {
            top: 35%;
            right: 6%;
            animation: floatFast 7s infinite;
        }

        .floating-icon.icon-4 {
            top: 75%;
            right: 4%;
            animation: floatSlow 9s infinite;
        }

        /* Parallax movement animations */
        @keyframes floatSlow {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-25px) translateX(12px) rotate(8deg);
            }
            100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
        }

        @keyframes floatMedium {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-18px) translateX(-10px) rotate(-5deg);
            }
            100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
        }

        @keyframes floatFast {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) translateX(8px) rotate(3deg);
            }
            100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
        }

        /* Scroll Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-up.animate-reverse {
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Container */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        /* New Spline Art Section */
        .spline-art-section {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: #000000;
        }

        .spline-art-section iframe {
            width: 100%;
            height: 100%;
            display: block;
            background: transparent;
        }

        /* Mobile Hero Background Image */
        .mobile-hero-background {
            display: none;
            width: 100%;
            height: 100vh;
            background: url('public/banner_mobile_home.png') center/cover no-repeat;
            background-size: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            background-color: #000000;
        }

        /* Fixed Logo - Always visible at top left with scroll transparency */
        .spline-logo-overlay {
            position: fixed;
            top: 40px;
            left: calc((100vw - 1100px) / 2 + 20px);
            z-index: 1004;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .spline-logo {
            width: 180px;
            height: 44px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
            transition: all 0.3s ease;
        }

        /* Logo transparency on scroll */
        .spline-logo-overlay {
            opacity: 0; /* Start hidden */
            transition: opacity 0.5s ease;
        }

        /* Language Selector - Fixed next to menu toggle */
        .language-selector {
            display: flex;
            gap: 8px;
            position: fixed;
            top: 40px;
            right: calc((100vw - 1100px) / 2 + 80px);
            z-index: 1003;
            
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .language-flag {
            width: 24px;
            height: 18px;
            cursor: pointer;
            border-radius: 3px;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0.6;
            border: 1px solid transparent;
        }

        .language-flag.active {
            opacity: 1;
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .language-flag:hover {
            opacity: 1;
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .language-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mobile Language Selector - Fixed at bottom left */
        .mobile-language-selector {
            display: none;
            position: fixed;
            bottom: 30px;
            left: 20px;
            z-index: 1005;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            padding: 12px;
            border-radius: 12px;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .mobile-language-selector .language-flag {
            width: 32px;
            height: 24px;
            border-radius: 4px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .mobile-language-selector .language-flag.active {
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.1);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

        .mobile-language-selector .language-flag:hover {
            transform: scale(1.15);
            border-color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Progress Indicator */
        .scroll-progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(0, 0, 0, 0.2);
            z-index: 1006;
            backdrop-filter: blur(10px);
        }

        .scroll-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #878787 0%, #a0a0a0 50%, #878787 100%);
            width: 0%;
            transition: width 0.1s ease-out;
            position: relative;
        }

        .scroll-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 8px;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 0 2px 2px 0;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: fixed;
            top: 40px;
            right: calc((100vw - 1100px) / 2 + 20px);
            z-index: 1003;
        }

        .menu-toggle.active {
            background: rgba(0, 0, 0, 0.9);
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background-color: #fcfcfc;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover span {
            background-color: #d2ca32;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Desktop Navigation Menu */
        .desktop-nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .desktop-nav-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-menu-content {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 35px;
            max-width: 350px;
            width: 90%;
            backdrop-filter: blur(10px);
            transform: translateY(30px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .desktop-nav-menu.active .nav-menu-content {
            transform: translateY(0) scale(1);
        }

        .nav-menu-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .nav-menu-links a {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 14px 20px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .nav-menu-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
            transition: left 0.6s ease;
        }

        .nav-menu-links a:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
            color: #d2ca32;
        }

        .nav-menu-links a:hover::before {
            left: 100%;
        }


        /* EXPERT empresa */
        .expert-empresa {

            background-image: url('images/fundo_emp.png') !important;
            background-attachment: fixed !important;

            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            background-attachment: fixed !important;
            background-size: cover !important;
            background-position: center center !important;
            display: flex;
            align-items: center;
            padding: 0;
            min-height: 100vh;
            margin: 10px 0;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
        }

        .expert-empresa::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(210, 202, 50, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(210, 202, 50, 0.03) 100%);
            z-index: 1;
        }

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

        /* EXPERT STRATEGIES PARALLAX */
        .expert-strategies {
             background-image: url('images/fundo_emp.png') !important;
            background-attachment: fixed !important;
            
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            background-attachment: fixed !important;
            background-size: cover !important;
            background-position: center center !important;
            display: flex;
            align-items: center;
            padding: 0;
            min-height: 100vh;
            margin: 10px 0;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
        }

        .expert-strategies::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(210, 202, 50, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(210, 202, 50, 0.03) 100%);
            z-index: 1;
        }

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

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            width: 100%;
            min-height: 80vh;
        }

        .text-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 40px 0;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(210, 202, 50, 0.3);
            background: linear-gradient(135deg, #ffffff 0%, #d2ca32 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .section-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #E0E0E0;
            opacity: 0.95;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            padding-left: 1px;
        }

        .section-description_texto {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #E0E0E0;
            opacity: 0.95;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            padding-left: 1px;
        }

        .section-description::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 0px;
            height: 0px;
            background: #d2ca32;
            border-radius: 50%;
        }

        .visual-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .modern-visual-container {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 588px;
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background: #d2ca32;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(210, 202, 50, 0.5);
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 3;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(210, 202, 50, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(210, 202, 50, 0.3);
        }

        .play-button:hover {
            background: rgba(210, 202, 50, 1);
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(210, 202, 50, 0.5);
        }

        .play-button svg {
            margin-left: 4px;
        }

        .video-player-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .video-player-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .video-player {
            width: 90%;
            height: 90%;
            border-radius: 8px;
        }

        .video-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .video-close-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .vector-overlay {
            position: absolute;
            top: 62px;
            right: -50px;
            width: 301px;
            height: 326px;
            z-index: 2;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
        }

        /* Base Brand Section Styles */
        .brand-section {
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 100px 0 150px 0;
            position: relative;
            margin: 10px 0;
            border-radius: 25px;
            overflow: hidden;
            background: #1a1a1a;
        }

        .brand-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-attachment: fixed !important;
            background-size: cover;
            background-position: center center !important;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .brand-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
            pointer-events: none;
        }

        .section-lynv::before {
            background-image: url('public/rectangle-6.png') !important;
            background-attachment: fixed !important;
        }

        .section-furia::before {
            background-image: url('public/banner_furia_3.png') !important;
            background-attachment: fixed !important;
        }

        .section-upfy::before {
            background-image: url('public/rectangle-7.png') !important;
            background-attachment: fixed !important;
        }

        .section-bullet::before {
            background-image: url('public/rectangle-8.png') !important;
            background-attachment: fixed !important;
        }

        .section-zuvia::before {
            background-image: url('public/rectangle-9.png') !important;
            background-attachment: fixed !important;
        }

        .section-king::before {
            background-image: url('public/rectangle-king.png') !important;
            background-attachment: fixed !important;
        }

        .section-flow::before {
            background-image: url('public/fundo_flow.png') !important;
            background-attachment: fixed !important;
        }

        .brand-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 120px;
            align-items: center;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            backdrop-filter: blur(2px);
            background: rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            padding: 60px 50px;
            border: 0px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 5;
        }

        .brand-content.furia-layout {
            grid-template-columns: 2fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .furia-layout .brand-actions {
            justify-self: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .furia-layout .brand-text {
            text-align: left;
            align-items: flex-start;
            justify-self: start;
            max-width: 450px;
        }

        .brand-content.flow-layout {
            grid-template-columns: 1fr 2fr;
            gap: 120px;
            align-items: center;
        }

        .flow-layout .brand-text {
            justify-self: end;
            text-align: right;
            align-items: flex-end;
            max-width: 450px;
        }

        .flow-layout .brand-actions {
            justify-self: start;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-content.lynv-layout {
            grid-template-columns: 1fr 2fr;
            gap: 120px;
            align-items: center;
        }

        .lynv-layout .brand-text {
            justify-self: start;
            text-align: right;
            align-items: flex-end;
            max-width: 450px;
        }

        .lynv-layout .brand-actions {
            justify-self: end;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-content.upfy-layout {
            grid-template-columns: 2fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .upfy-layout .brand-text {
            justify-self: start;
            text-align: left;
            align-items: flex-start;
            max-width: 450px;
        }

        .upfy-layout .brand-actions {
            justify-self: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-content.bullet-layout {
            grid-template-columns: 2fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .bullet-layout .brand-text {
             justify-self: start;
            text-align: left;
            align-items: flex-start;
            max-width: 450px;
        }

        .bullet-layout .brand-actions {
           justify-self: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-content.zuvia-layout {
            grid-template-columns: 1fr 2fr;
            gap: 120px;
            align-items: center;
        }

        .zuvia-layout .brand-text {
            justify-self: start;
            text-align: right;
            align-items: flex-end;
            max-width: 450px;
        }

        .zuvia-layout .brand-actions {
           justify-self: end;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;
        }

        .brand-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 300;
            opacity: 0.9;
            line-height: 1.4;
            color: #B8B8B8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .section-lynv .brand-description,
        .section-flow .brand-description,
        .section-furia .brand-description,
        .section-upfy .brand-description,
        .section-bullet .brand-description,
        .section-king .brand-description,
        .section-zuvia .brand-description {
            color: #ffffff;
            opacity: 0.9;
        }

        .brand-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .brand-logo {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            animation: parallaxFloat 6s ease-in-out infinite;
        }

        .lynv-logo {
            max-width: 140px !important;
            height: auto;
        }

        .furia-logo {
            max-width: 170px !important;
            height: auto;
        }

        .upfy-logo {
            max-width: 140px !important;
            height: auto;
        }

        .bullet-logo {
            max-width: 160px !important;
            height: auto;
        }

        .zuvia-logo {
            max-width: 190px !important;
            height: auto;
        }

        .king-logo {
            max-width: 120px !important;
            height: auto;
        }

        .flow-logo {
            max-width: 160px !important;
            height: auto;
        }

        .brand-button {
            width: 160px;
            height: 40px;
            border: none;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            align-self: flex-start;
        }

        

        .lynv-button {
            background-color: #d2ca32;
            color: #1a1a1a;
            box-shadow: 0 4px 15px rgba(210, 202, 50, 0.4);
        }

        .lynv-button:hover {
            background-color: #e6d946;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(210, 202, 50, 0.6);
        }

        .upfy-button,
        .bullet-button {
            background-color: #cccccc;
            color: #1a1a1a;
        }

        .upfy-button:hover,
        .bullet-button:hover {
            background-color: #e0e0e0;
            transform: translateY(-2px);
        }

        .king-button {
            background-color: #c49d00;
            color: white;
        }

        .king-button:hover {
            background-color: #ac8a01;
            transform: translateY(-2px);
        }

        .zuvia-button {
            background-color: #cc1658;
            color: white;
        }

        .zuvia-button:hover {
            background-color: #e01a66;
            transform: translateY(-2px);
        }

        .flow-button {
            background-color: #4a90e2;
            color: white;
        }

        .flow-button:hover {
            background-color: #5ba0f2;
            transform: translateY(-2px);
        }

        .furia-button {
            background-color: #ff6b35;
            color: white;
        }

        .furia-button:hover {
            background-color: #ff7a47;
            transform: translateY(-2px);
        }

        /* Social Media Icons for Brand Sections */
        .social-media-icons {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -22px;
            left: 17%;
            transform: translateX(-50%);
            justify-content: center;
            flex-direction: row;
            z-index: 10;
            width: auto;
        }

        .social-media-icons-dir {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -22px;
            left: 82%;
            transform: translateX(-50%);
            justify-content: center;
            flex-direction: row;
            z-index: 10;
            width: auto;
        }

            /* 
            
            .social-media-icons {
            display: flex;
            gap: 15px;
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            justify-content: center;
            flex-direction: row;
            z-index: 10;
            width: auto;
        }
            
            */
        


        .social-icon-link {
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .social-icon-link:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .social-icon-brand {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 0px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .social-icon-brand::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .social-icon-brand:hover {
            transform: scale(1.15);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .social-icon-brand:hover::before {
            left: 100%;
        }

        .social-icon-brand.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: rgba(240, 148, 51, 0.6);
        }

        .social-icon-brand.facebook:hover {
            background: #1877f2;
            border-color: rgba(24, 119, 242, 0.6);
        }

        .social-icon-brand.linkedin:hover {
            background: #0077b5;
            border-color: rgba(0, 119, 181, 0.6);
        }

        .social-icon-brand.twitter:hover {
            background: #1da1f2;
            border-color: rgba(29, 161, 242, 0.6);
        }

        .social-icon-brand.youtube:hover {
            background: #e03303;
            border-color: rgba(177, 36, 4, 0.6);
        }

         .social-icon-brand.tiktok:hover {
            background: #ff004f;
            border-color: rgba(255, 41, 41, 0.6);
        }

        /* Interactive Map Section */
        .map-section {
            height: 532px;
            overflow: hidden;
            margin: 10px 0;
            border-radius: 25px;
            position: relative;
        }

        .map-container {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 25px;
        }

        .map-overlay {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            max-width: 300px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .map-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .map-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .map-address {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: #cccccc;
            line-height: 1.4;
            margin: 0;
        }

        .map-actions {
            display: flex;
            gap: 10px;
        }

        .map-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #d2ca32;
            color: #1a1a1a;
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .map-button:hover {
            background: #e6d946;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 202, 50, 0.4);
        }

        .map-icon {
            width: 14px;
            height: 14px;
            filter: invert(1);
        }

        /* Footer */
        .footer {
            background-image: url('images/fundo_footer.png') !important;
            background-attachment: fixed !important;
            background-color: #151515;
            padding: 60px 0;
            margin-top: 10px;
            border-radius: 25px 25px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 60px;
            align-items: center;
        }

        .footer-logo img {
            width: 200px;
            height: 49px;
            object-fit: contain;
        }

        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .footer-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 461px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 20px;
            border: 1.5px solid rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
        }

        .social-icon:hover {
            border-color: #45e3ff;
            background: rgba(69, 227, 255, 0.1);
            transform: translateY(-2px);
        }

        .social-icon img {
            max-width: 18px;
            max-height: 18px;
            object-fit: contain;
        }

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


        .visual-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/* imagem individual */
.stacked-ima-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 408px;
}

.stacked-ima {
    position: relative;
    width: 100%;
    height: 455px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
}

.stacked-ima::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    transition: all 0.4s ease;
    z-index: 2;
}

.stacked-ima:hover::before {
    background: transparent;
}

.stacked-ima:hover {
    transform: translateX(5px);
   
}

.stacked-ima img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.stacked-ima:hover img {
    filter: brightness(1);
}



/* Container das 3 imagens empilhadas */
.stacked-images-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.stacked-image {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stacked-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    z-index: 2;
}

.stacked-image:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.stacked-image:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stacked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.stacked-image:hover img {
    filter: brightness(1.2);
}



        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                max-width: 90%;
            }
            
            .menu-toggle {
                right: 5%;
            }
            
            .language-selector {
                right: calc(5% + 60px);
            }
            
            .spline-logo-overlay {
                left: 5%;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .floating-icons {
                display: none;
            }
            
            .desktop-nav-menu {
                display: none;
            }
            
            .menu-toggle {
                display: none;
            }
            
            .language-selector {
                display: none;
            }
            
            .mobile-language-selector {
                display: flex;
            }
            
            .spline-art-section iframe {
                display: none;
            }
            
            .spline-art-section {
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .mobile-hero-background {
                display: block;
                position: relative;
                height: 100vh;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
            
            .spline-logo-overlay {
                left: 50%;
                transform: translateX(-50%);
                top: 30px;
            }
            
            .spline-logo {
                width: 160px;
                height: auto;
            }
            
            .content-wrapper,
            .brand-content,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 40px 20px;
            }
            
            .brand-content.lynv-layout,
            .brand-content.flow-layout,
            .brand-content.furia-layout,
            .brand-content.upfy-layout,
            .brand-content.bullet-layout,
            .brand-content.zuvia-layout {
                grid-template-columns: 1fr;
                gap: 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .brand-content .brand-actions {
                order: 1;
                justify-self: center;
                align-self: center;
            }
            
            .brand-content .brand-text {
                order: 2;
                text-align: center;
                align-items: center;
                justify-self: center;
                max-width: 100%;
            }
            
            .brand-content .brand-button {
                align-self: center !important;
                margin-left: auto;
                margin-right: auto;
                display: block;
            }
            
            .section-description {
                font-size: 16px !important;
                line-height: 1.6 !important;
            }
            
            .section-description-list {
                gap: 15px;
            }
            
            .brand-description {
                font-size: 15px !important;
                line-height: 1.6 !important;
                margin-bottom: 10px;
            }
            
            .modern-visual-container {
                grid-template-columns: 1fr;
                height: 300px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .brand-section {
                min-height: auto;
                padding: 60px 0;
            }
            
            .brand-section {
                background: #1a1a1a;
            }
            
            .brand-section::before {
                background-attachment: scroll !important;
                background-size: cover;
                background-position: center;
            }
            
            .section-lynv::before {
                background-image: url('public/rectangle-6.png');
                background-attachment: scroll !important;
            }
            
            .section-furia::before {
                background-image: url('public/banner_furia_3.png');
                background-attachment: scroll !important;
            }
            
            .section-upfy::before {
                background-image: url('public/rectangle-7.png');
                background-attachment: scroll !important;
            }
            
            .section-bullet::before {
                background-image: url('public/rectangle-8.png');
                background-attachment: scroll !important;
            }
            
            .section-zuvia::before {
                background-image: url('public/rectangle-9.png');
                background-attachment: scroll !important;
            }

             .section-king::before {
                background-image: url('public/rectangle-king.png');
                background-attachment: scroll !important;
            }
            
            .section-flow::before {
                background-image: url('public/rectangle-7.png');
                background-attachment: scroll !important;
            }
            
            .expert-strategies {
                background-attachment: scroll !important;
            }

            .expert-empresa {
                background-attachment: scroll !important;
            }
            
            .map-section {
                height: 400px;
            }
            
            .map-overlay {
                position: static;
                margin: 20px;
                max-width: none;
            }
            
            .footer-info {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .brand-text {
                gap: 20px;
            }
            
            .carousel-container {
                max-width: 100%;
                height: 250px;
            }
            
            .vector-overlay {
                display: none;
            }
            
            .brand-button {
                width: 150px;
                height: 36px;
                font-size: 13px;
                margin-top: 18px;
                align-self: center;
            }
            
            

            .social-media-icons {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            justify-content: center;
            flex-direction: row;
            z-index: 10;
            width: auto;

            margin-bottom: 20px;
        }

            .social-media-icons-dir {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            justify-content: center;
            flex-direction: row;
            z-index: 10;
            width: auto;

            margin-bottom: 20px;
        }
            
            .social-icon-brand {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .section-description {
                font-size: 15px !important;
            }
            
            .brand-description {
                font-size: 14px !important;
            }
            
            .brand-button {
                width: 140px;
                height: 34px;
                font-size: 12px;
            }
            
            .modern-visual-container {
                height: 250px;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .footer-description {
                font-size: 13px;
            }
            
            .brand-content,
            .content-wrapper {
                padding: 30px 15px;
            }
            
            .carousel-container {
                height: 200px;
            }
            
            .spline-logo {
                width: 140px;
            }
            
            .map-overlay {
                margin: 15px;
                padding: 20px;
            }
            
            .map-title {
                font-size: 16px;
            }
            
            .map-address {
                font-size: 12px;
            }
            
            .map-button {
                padding: 8px 12px;
                font-size: 11px;
            }
            
            .social-icon-brand {
                width: 28px;
                height: 28px;
            }
            
            .mobile-language-selector {
                bottom: 20px;
                left: 15px;
                padding: 10px;
            }
            
            .mobile-language-selector .language-flag {
                width: 28px;
                height: 21px;
            }
        }