
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0a0f;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #00d4ff;
            color: #000;
            padding: 8px 16px;
            z-index: 10000;
            text-decoration: none;
            font-weight: 600;
            border-radius: 0 0 8px 0;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #ff006e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #aaa;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #7b2cbf);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        /* Hero Section - Logo fixo em cima, texto em baixo */
        .hero {
            min-height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 80%, rgba(123, 44, 191, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
            background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
            animation: hero-bg-shift 15s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
            padding-bottom: 30px;
        }

        @keyframes hero-bg-shift {
            0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%; }
            25% { background-position: 100% 0%, 0% 100%, 50% 50%, 0% 0%; }
            50% { background-position: 100% 100%, 0% 0%, 50% 50%, 0% 0%; }
            75% { background-position: 0% 100%, 100% 0%, 50% 50%, 0% 0%; }
        }

        /* Shooting Stars Effect */
        .shooting-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .shooting-star {
            position: absolute;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
            animation: shoot 3s linear infinite;
            opacity: 0;
        }

        .shooting-star::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, transparent 70%);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        }

        .shooting-star:nth-child(1) { top: 20%; left: -100px; animation-delay: 0s; animation-duration: 4s; }
        .shooting-star:nth-child(2) { top: 40%; left: -100px; animation-delay: 2s; animation-duration: 5s; }
        .shooting-star:nth-child(3) { top: 60%; left: -100px; animation-delay: 4s; animation-duration: 3.5s; }
        .shooting-star:nth-child(4) { top: 30%; left: -100px; animation-delay: 6s; animation-duration: 4.5s; }
        .shooting-star:nth-child(5) { top: 70%; left: -100px; animation-delay: 8s; animation-duration: 5.5s; }

        @keyframes shoot {
            0% {
                transform: translateX(0) rotate(-45deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateX(calc(100vw + 200px)) rotate(-45deg);
                opacity: 0;
            }
        }

        /* Partículas de fundo */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(0, 212, 255, 0.6);
            border-radius: 50%;
            animation: float-particle 15s infinite;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 18s; background: rgba(123, 44, 191, 0.6); box-shadow: 0 0 10px rgba(123, 44, 191, 0.8); }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 14s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 16s; background: rgba(255, 0, 110, 0.6); box-shadow: 0 0 10px rgba(255, 0, 110, 0.8); }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 1.5s; animation-duration: 17s; background: rgba(123, 44, 191, 0.6); }
        .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 15s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 0.8s; animation-duration: 19s; background: rgba(255, 0, 110, 0.6); }
        .particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 11s; }
        .particle:nth-child(10) { left: 5%; animation-delay: 4s; animation-duration: 20s; background: rgba(123, 44, 191, 0.6); }
        .particle:nth-child(11) { left: 15%; animation-delay: 5s; animation-duration: 14s; }
        .particle:nth-child(12) { left: 25%; animation-delay: 2.2s; animation-duration: 16s; background: rgba(255, 0, 110, 0.6); }
        .particle:nth-child(13) { left: 35%; animation-delay: 3.8s; animation-duration: 18s; }
        .particle:nth-child(14) { left: 45%; animation-delay: 1.2s; animation-duration: 12s; background: rgba(123, 44, 191, 0.6); }
        .particle:nth-child(15) { left: 55%; animation-delay: 4.5s; animation-duration: 15s; }
        .particle:nth-child(16) { left: 65%; animation-delay: 0.3s; animation-duration: 17s; background: rgba(255, 0, 110, 0.6); }
        .particle:nth-child(17) { left: 75%; animation-delay: 2.8s; animation-duration: 13s; }
        .particle:nth-child(18) { left: 85%; animation-delay: 5.5s; animation-duration: 19s; background: rgba(123, 44, 191, 0.6); }
        .particle:nth-child(19) { left: 95%; animation-delay: 1.8s; animation-duration: 14s; }
        .particle:nth-child(20) { left: 50%; animation-delay: 6s; animation-duration: 21s; background: rgba(0, 212, 255, 0.8); width: 6px; height: 6px; }
        .particle:nth-child(21) { left: 8%; animation-delay: 0.5s; animation-duration: 13s; background: rgba(0, 255, 136, 0.6); box-shadow: 0 0 15px rgba(0, 255, 136, 0.8); }
        .particle:nth-child(22) { left: 18%; animation-delay: 2.5s; animation-duration: 16s; background: rgba(255, 165, 0, 0.6); box-shadow: 0 0 15px rgba(255, 165, 0, 0.8); }
        .particle:nth-child(23) { left: 28%; animation-delay: 4s; animation-duration: 19s; background: rgba(0, 212, 255, 0.7); width: 5px; height: 5px; }
        .particle:nth-child(24) { left: 38%; animation-delay: 1s; animation-duration: 14s; background: rgba(255, 0, 255, 0.6); box-shadow: 0 0 12px rgba(255, 0, 255, 0.8); }
        .particle:nth-child(25) { left: 48%; animation-delay: 3.5s; animation-duration: 17s; background: rgba(0, 255, 255, 0.6); }
        .particle:nth-child(26) { left: 58%; animation-delay: 5.5s; animation-duration: 12s; background: rgba(255, 215, 0, 0.6); box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
        .particle:nth-child(27) { left: 68%; animation-delay: 2s; animation-duration: 20s; background: rgba(0, 212, 255, 0.8); width: 7px; height: 7px; }
        .particle:nth-child(28) { left: 78%; animation-delay: 4.5s; animation-duration: 15s; background: rgba(123, 44, 191, 0.7); }
        .particle:nth-child(29) { left: 88%; animation-delay: 6s; animation-duration: 18s; background: rgba(255, 69, 0, 0.6); box-shadow: 0 0 12px rgba(255, 69, 0, 0.8); }
        .particle:nth-child(30) { left: 98%; animation-delay: 1.5s; animation-duration: 14s; background: rgba(0, 255, 136, 0.7); }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) scale(1.5);
                opacity: 0;
            }
        }

        /* Formas geométricas flutuantes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            opacity: 0.15;
            animation: shape-float 20s ease-in-out infinite;
        }

        .floating-shape.circle {
            width: 100px;
            height: 100px;
            border: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 50%;
            animation: shape-float 25s ease-in-out infinite, shape-rotate 30s linear infinite;
        }

        .floating-shape.triangle {
            width: 0;
            height: 0;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 86px solid rgba(123, 44, 191, 0.3);
            animation: shape-float 18s ease-in-out infinite, shape-rotate 25s linear infinite reverse;
        }

        .floating-shape.square {
            width: 80px;
            height: 80px;
            border: 2px solid rgba(255, 0, 110, 0.4);
            transform: rotate(45deg);
            animation: shape-float 22s ease-in-out infinite, shape-rotate 20s linear infinite;
        }

        .floating-shape.hexagon {
            width: 60px;
            height: 34px;
            background: rgba(0, 255, 136, 0.2);
            position: relative;
            animation: shape-float 28s ease-in-out infinite;
        }

        .floating-shape.hexagon:before,
        .floating-shape.hexagon:after {
            content: '';
            position: absolute;
            width: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
        }

        .floating-shape.hexagon:before {
            bottom: 100%;
            border-bottom: 17px solid rgba(0, 255, 136, 0.2);
        }

        .floating-shape.hexagon:after {
            top: 100%;
            border-top: 17px solid rgba(0, 255, 136, 0.2);
        }

        .floating-shape:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .floating-shape:nth-child(2) { top: 20%; left: 85%; animation-delay: 3s; }
        .floating-shape:nth-child(3) { top: 60%; left: 10%; animation-delay: 6s; }
        .floating-shape:nth-child(4) { top: 40%; left: 90%; animation-delay: 9s; }
        .floating-shape:nth-child(5) { top: 80%; left: 20%; animation-delay: 12s; }
        .floating-shape:nth-child(6) { top: 30%; left: 70%; animation-delay: 15s; }

        @keyframes shape-float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-30px) translateX(15px); }
            50% { transform: translateY(-15px) translateX(-15px); }
            75% { transform: translateY(-40px) translateX(10px); }
        }

        @keyframes shape-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Efeito Aurora Boreal */
        .aurora-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .aurora {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 40%);
            animation: aurora-move 15s ease-in-out infinite;
        }

        .aurora:nth-child(2) {
            animation-delay: -5s;
            animation-direction: reverse;
            opacity: 0.7;
        }

        .aurora:nth-child(3) {
            animation-delay: -10s;
            opacity: 0.5;
        }

        @keyframes aurora-move {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(5%, 5%) rotate(2deg) scale(1.05); }
            50% { transform: translate(-3%, 8%) rotate(-1deg) scale(0.98); }
            75% { transform: translate(-5%, -3%) rotate(1deg) scale(1.02); }
        }

        /* Efeito de luz pulsante */
        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(123, 44, 191, 0.15) 30%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 3s ease-in-out infinite;
            z-index: 0;
            pointer-events: none;
        }

        .hero-glow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.25) 0%, rgba(255, 0, 110, 0.15) 40%, transparent 60%);
            border-radius: 50%;
            animation: pulse-glow 3s ease-in-out infinite reverse;
        }

        .hero-glow::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, transparent 40%, rgba(0, 212, 255, 0.08) 50%, transparent 60%);
            border-radius: 50%;
            animation: pulse-glow-outer 5s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 1;
            }
        }

        @keyframes pulse-glow-outer {
            0%, 100% {
                transform: translate(-50%, -50%) scale(0.9);
                opacity: 0.4;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.7;
            }
        }

        /* Grid animado de fundo */
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
            z-index: 0;
        }

        @keyframes grid-move {
            0% {
                transform: perspective(500px) rotateX(60deg) translateY(0);
            }
            100% {
                transform: perspective(500px) rotateX(60deg) translateY(50px);
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            max-width: 900px;
            z-index: 10;
            position: relative;
            width: 100%;
        }

        /* Mobile Badge - MAIS DESTACADO */
        .mobile-badge {
            position: absolute;
            top: 90px;
            right: 20px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(123, 44, 191, 0.25));
            border: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 50px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 100;
            animation: mobile-badge-pulse 2s ease-in-out infinite;
            backdrop-filter: blur(10px);
        }

        @keyframes mobile-badge-pulse {
            0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.4); transform: scale(1); }
            50% { box-shadow: 0 0 60px rgba(0, 212, 255, 0.7); transform: scale(1.02); }
        }

        .mobile-badge .mobile-icon {
            font-size: 2rem;
            animation: van-drive 1.5s ease-in-out infinite;
        }

        @keyframes van-drive {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            25% { transform: translateX(-5px) rotate(-3deg); }
            75% { transform: translateX(5px) rotate(3deg); }
        }

        .mobile-badge .mobile-text {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        /* Van Animation - Carro que passa */
        .van-animation {
            position: absolute;
            bottom: 120px;
            left: -100px;
            font-size: 3rem;
            z-index: 50;
            animation: van-pass 15s linear infinite;
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
        }

        @keyframes van-pass {
            0% { left: -100px; }
            100% { left: calc(100% + 100px); }
        }

        /* Mobile Service Banner */
        .mobile-service-banner {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 44, 191, 0.15));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 15px 30px;
            margin: 20px 0;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            animation: hero-fade-in-up 0.8s ease-out 0.5s forwards;
            opacity: 0;
        }

        .mobile-service-banner .banner-icon {
            font-size: 2rem;
        }

        .mobile-service-banner .banner-text {
            color: #00d4ff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Logo Container com efeito de halo */
        .hero-logo-container {
            position: relative;
            margin-bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .hero-logo-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(123, 44, 191, 0.08) 40%, transparent 70%);
            border-radius: 50%;
            animation: logo-glow-pulse 5s ease-in-out infinite;
        }

        @keyframes logo-glow-pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        /* Logo - MAIOR E MAIS DESTACADO */
        .hero-logo {
            text-align: center;
            position: relative;
            z-index: 100;
            opacity: 1;
            visibility: visible;
            display: block;
            margin-bottom: 20px;
        }

        .hero-logo img {
            max-width: 1100px;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.5)) 
                    drop-shadow(0 0 100px rgba(123, 44, 191, 0.4))
                    drop-shadow(0 0 150px rgba(255, 0, 110, 0.2));
            animation: hero-logo-float 4s ease-in-out infinite;
            opacity: 1;
            transition: all 0.4s ease;
        }

        .hero-logo img:hover {
            transform: scale(1.03);
            filter: drop-shadow(0 0 70px rgba(0, 212, 255, 0.7)) 
                    drop-shadow(0 0 140px rgba(123, 44, 191, 0.6))
                    drop-shadow(0 0 200px rgba(255, 0, 110, 0.3));
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            margin: 0;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #ff006e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
            letter-spacing: 2px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #ff006e 0%, #ff8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-slogan {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 10px 0 0 0;
            font-weight: 300;
            letter-spacing: 3px;
        }

        @keyframes hero-logo-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes hero-fade-in-up {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Texto - EM BAIXO DO LOGO */
        .hero-text {
            text-align: center;
            position: relative;
            z-index: 50;
            opacity: 1;
        }

        /* Headline Principal */
        .hero-headline {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .headline-main {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
            opacity: 0;
            animation: hero-fade-in-up 0.8s ease-out 0.3s forwards;
        }

        .headline-highlight {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #ff006e 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: hero-gradient-shift 3s ease infinite, hero-fade-in-up 0.8s ease-out 0.5s forwards;
            opacity: 0;
            text-shadow: none;
        }

        /* Locations Showcase */
        .locations-showcase {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            opacity: 0;
            animation: hero-fade-in-up 0.8s ease-out 0.7s forwards;
        }

        .location-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            min-width: 80px;
        }

        .location-item:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.4);
            transform: translateY(-5px);
        }

        .location-item .location-icon {
            font-size: 2rem;
            animation: icon-bounce 2s ease-in-out infinite;
        }

        .location-item:nth-child(2) .location-icon { animation-delay: 0.2s; }
        .location-item:nth-child(3) .location-icon { animation-delay: 0.4s; }
        .location-item:nth-child(4) .location-icon { animation-delay: 0.6s; }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .location-item span {
            color: #a0a0a0;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #ff006e 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
            opacity: 0;
            animation: hero-gradient-shift 5s ease infinite, hero-fade-in-up 0.8s ease-out 0.3s forwards;
        }

        @keyframes hero-gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Tagline - aparece suavemente */
        .hero-text .tagline {
            font-size: 1.1rem;
            color: #a0a0a0;
            font-weight: 300;
            margin: 0 auto 20px auto;
            max-width: 600px;
            line-height: 1.5;
            opacity: 0;
            animation: hero-fade-in-up 0.8s ease-out 0.8s forwards;
        }

        /* Botão CTA */
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            background-size: 200% 200%;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            opacity: 0;
            animation: hero-gradient-shift 3s ease infinite, hero-fade-in-up 0.8s ease-out 0.9s forwards;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
            border: none;
            cursor: pointer;
            margin-top: 10px;
        }

        .hero-cta .cta-icon {
            font-size: 1.3rem;
            animation: calendar-shake 2s ease-in-out infinite;
        }

        @keyframes calendar-shake {
            0%, 100% { transform: rotate(0deg); }
            10% { transform: rotate(-10deg); }
            20% { transform: rotate(10deg); }
            30% { transform: rotate(-5deg); }
            40% { transform: rotate(5deg); }
            50% { transform: rotate(0deg); }
        }

        .hero-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.5);
        }

        .hero-cta:hover .cta-icon {
            animation: none;
            transform: scale(1.2);
        }

        /* Container dos botões CTA */
        .hero-cta-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: hero-fade-in-up 0.8s ease-out 0.9s forwards;
            margin-top: 5px;
        }

        /* Botão CTA Secundário */
        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 212, 255, 0.5);
            cursor: pointer;
            position: relative;
            z-index: 100;
        }

        .hero-cta-secondary:hover {
            background: rgba(0, 212, 255, 0.15);
            border-color: #00d4ff;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: hero-fade-in-up 1s ease-out 1.5s both;
            z-index: 1;
        }

        .scroll-indicator span {
            color: #666;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 25px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #00d4ff;
            border-radius: 50%;
            animation: scroll-bounce 2s infinite;
        }

        @keyframes scroll-bounce {
            0%, 100% {
                top: 10px;
                opacity: 1;
            }
            50% {
                top: 30px;
                opacity: 0.3;
            }
        }

        .partners-bar {
            position: relative;
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 1;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 30px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        .partners-label {
            color: #888;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .partner-logos {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .partner-logo {
            height: 55px;
            width: auto;
            opacity: 0.9;
            transition: all 0.3s ease;
            filter: brightness(1.1);
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.1);
            filter: brightness(1.3);
        }


        /* Features Section */
        .features {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #888;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #00d4ff;
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .feature-card p {
            color: #888;
            font-size: 0.95rem;
        }

        /* Experiences Section */
        .experiences {
            padding: 100px 20px;
            background: #0a0a0f;
        }

        /* Partner Tabs */
        .partner-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0 30px;
            flex-wrap: wrap;
        }

        .partner-tab {
            padding: 15px 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: #aaa;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .partner-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-3px);
        }

        .partner-tab.active {
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* Category Filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 30px 0;
            padding: 0 20px;
        }

        .category-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            color: #aaa;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .category-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            color: #fff;
        }

        .category-btn.active {
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        /* Experience Tags */
        .experience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .tag {
            padding: 4px 12px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            font-size: 0.75rem;
            color: #00d4ff;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .experience-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #7b2cbf, #ff006e);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .experience-card:hover::before {
            opacity: 1;
        }

        .experience-card:hover {
            transform: scale(1.02);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .experience-image {
            width: 100%;
            aspect-ratio: 21/9;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .experience-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .experience-card:hover .experience-image img {
            transform: scale(1.1);
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .experience-card:hover .play-overlay {
            opacity: 1;
        }

        .play-overlay span {
            font-size: 4rem;
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .experience-card:hover .play-overlay span {
            transform: scale(1);
        }

        /* Hide play overlay when no video */
        .experience-card.no-video .play-overlay {
            display: none !important;
        }

        /* Coming Soon */
        .coming-soon {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .coming-soon-icon {
            font-size: 5rem;
            margin-bottom: 20px;
        }

        .coming-soon h3 {
            font-size: 2rem;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .coming-soon p {
            color: #aaa;
            font-size: 1.2rem;
        }

        .coming-soon-sub {
            color: #666;
            font-size: 1rem;
            margin-top: 10px;
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
            z-index: 1;
        }

        .video-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 3rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .video-modal-close:hover {
            color: #00d4ff;
        }

        .video-modal-iframe {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .video-modal-iframe iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .experience-content {
            padding: 30px;
        }

        .experience-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .experience-content p {
            color: #999;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .experience-meta {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            font-size: 0.85rem;
            color: #00d4ff;
        }

        /* Booking Section */
        .booking {
            padding: 100px 20px;
            background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
        }

        .booking-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .calendar-section {
            display: none;
        }

        .calendar-section.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .calendar-section h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .calendar-section > p {
            color: #888;
            margin-bottom: 40px;
        }

        .calendar-legend {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }

        .legend-dot {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }

        .legend-dot.available { background: #22c55e; }
        .legend-dot.busy { background: #ef4444; }
        .legend-dot.limited { background: #f59e0b; }

        .hours-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
        }

        .hours-box h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #aaa;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list .day {
            color: #ffffff;
            font-weight: 500;
        }

        .calendar-placeholder {
            background: rgba(255, 255, 255, 0.02);
            border: 2px dashed rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            color: #666;
            margin-top: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-placeholder:hover {
            border-color: #00d4ff;
            color: #00d4ff;
        }

        /* Partners Section */
        .partners {
            padding: 80px 20px;
            text-align: center;
            background: #0a0a0f;
        }

        .partners h3 {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        /* Tech Section */
        .tech {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
            text-align: center;
        }

        .tech h2 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            background: #0a0a0f;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact > p {
            color: #888;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Contact Form Styles */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 50px;
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00d4ff;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            padding: 18px 40px;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
        }


        /* Social Icons */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .social-icon.facebook:hover {
            background: #1877f2;
            border-color: #1877f2;
            box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: transparent;
            box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
        }

        .social-icon.tiktok:hover {
            background: #000000;
            border-color: #ffffff;
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .social-icon.linkedin:hover {
            background: #0a66c2;
            border-color: #0a66c2;
            box-shadow: 0 10px 25px rgba(10, 102, 194, 0.4);
        }

        .social-icon.youtube:hover {
            background: #ff0000;
            border-color: #ff0000;
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
        }


        /* Sobre Nós Section */
        .sobre {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
        }

        .sobre-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .sobre-texto {
            color: #aaa;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .sobre-texto p {
            margin-bottom: 20px;
        }

        .sobre-galeria {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .sobre-galeria img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .sobre-galeria img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .sobre-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .sobre-galeria {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Legal Pages Modal */
        .legal-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .legal-modal-content {
            background: #12121a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .legal-modal-header {
            padding: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: #12121a;
            z-index: 1;
        }

        .legal-modal-header h2 {
            margin: 0;
            color: #00d4ff;
        }

        .legal-modal-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .legal-modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .legal-modal-body {
            padding: 30px;
            color: #aaa;
            line-height: 1.8;
            white-space: pre-line;
        }

        /* Footer */
        footer {
            background: #050508;
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #666;
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #444;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
        }

        
        
        /* Booking & Contact Unified Section */
        .booking {
            padding: 100px 20px;
            background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
        }

        .booking-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        @media (max-width: 968px) {
            .booking-content {
                grid-template-columns: 1fr;
            }
        }

        .calendar-section h3,
        .contact-form-section h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .form-subtitle {
            color: #888;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        /* Reservation Summary */
        .reservation-summary {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .reservation-summary h4 {
            color: #00d4ff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-item span {
            color: #888;
        }

        .summary-item strong {
            color: #ffffff;
        }

        /* Calendar Styles */
        .calendar-wrapper {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 25px;
            margin-top: 20px;
            display: none;
        }

        .calendar-wrapper.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .site-calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .site-calendar-header h4 {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .site-calendar-nav {
            display: flex;
            gap: 8px;
        }

        .site-calendar-nav button {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: #00d4ff;
            padding: 8px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .site-calendar-nav button:hover {
            background: rgba(0, 212, 255, 0.2);
        }

        .site-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }

        .site-calendar-day-header {
            text-align: center;
            padding: 10px 3px;
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
        }

        .site-calendar-day {
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            font-size: 0.9rem;
            position: relative;
            transition: all 0.3s ease;
            cursor: default;
        }

        .site-calendar-day.available {
            cursor: pointer;
        }

        .site-calendar-day.available:hover {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.15);
        }

        .site-calendar-day.other-month {
            color: #444;
            background: rgba(255, 255, 255, 0.01);
        }

        .site-calendar-day.blocked {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.2);
            color: #666;
            text-decoration: line-through;
        }

        .site-calendar-day.event {
            background: rgba(245, 158, 11, 0.15);
            border-color: rgba(245, 158, 11, 0.4);
            color: #f59e0b;
            cursor: pointer;
        }

        .site-calendar-day.event:hover {
            background: rgba(245, 158, 11, 0.25);
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
        }

        .site-calendar-day.partial {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
            color: #8b5cf6;
            cursor: pointer;
        }

        .site-calendar-day.today {
            border-color: #00d4ff;
            box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.2);
        }

        .site-calendar-day.selected {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.25);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
        }

        .day-label {
            font-size: 0.55rem;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            opacity: 0.8;
        }

        /* Event Info Box */
        .event-info-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 16px;
            padding: 20px;
            margin-top: 20px;
            display: none;
        }

        .event-info-box.visible {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .event-info-box h5 {
            color: #f59e0b;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .event-info-box p {
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .btn-event-reserve {
            padding: 12px 25px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .btn-event-reserve:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        /* Time Slots */
        .site-time-slots {
            margin-top: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: none;
        }

        .site-time-slots h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .site-time-slots-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        @media (max-width: 768px) {
            .site-time-slots-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .site-time-slots-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .site-time-slot {
            padding: 12px 8px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .site-time-slot:hover {
            background: rgba(34, 197, 94, 0.2);
            transform: translateY(-2px);
        }

        .site-time-slot.blocked {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            color: #666;
            cursor: not-allowed;
            text-decoration: line-through;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: #00d4ff;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .btn-submit {
            padding: 16px 30px;
            background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
        }

        /* Hours Box */
        .hours-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            max-width: 500px;
            margin: 40px auto 0;
        }

        .hours-box h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-align: center;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #aaa;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list .day {
            color: #ffffff;
            font-weight: 500;
        }

        /* Calendar Legend */
        .calendar-legend {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #888;
        }

        .legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 3px;
        }

        .legend-dot.available { background: #22c55e; }
        .legend-dot.busy { background: #ef4444; }


        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 90px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                right: 80px;
                width: 45px;
                height: 45px;
            }
            .whatsapp-float svg {
                width: 24px;
                height: 24px;
            }
        }


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

                /* Menu Mobile Styles */
        .nav-links.mobile-open {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.98);
            padding: 30px;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-links.mobile-open a {
            font-size: 1.2rem;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

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


        
        /* Hero Section Responsive */
        @media (max-width: 968px) {
            .hero {
                padding-top: 80px;
                padding-bottom: 60px;
            }

            .hero-content {
                padding: 0 25px;
            }

            .hero-logo {
                margin-bottom: 35px;
            }

            .hero-text h1 {
                font-size: 2.6rem;
            }

            .hero-text .tagline {
                font-size: 1.15rem;
            }

            .hero-logo img {
                max-width: 300px;
            }

            .hero-glow {
                width: 350px;
                height: 350px;
            }

            .scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 70px;
                padding-bottom: 50px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text .tagline {
                font-size: 1rem;
            }

            .hero-logo {
                margin-bottom: 30px;
            }

            .hero-logo img {
                max-width: 500px;
            }

            .hero-logo-glow {
                width: 350px;
                height: 350px;
            }

            .mobile-badge {
                top: 80px;
                right: 15px;
            }

            .van-animation {
                font-size: 2.5rem;
            }

            .hero-cta {
                padding: 14px 35px;
                font-size: 1rem;
            }

            .hero-cta-secondary {
                padding: 14px 35px;
                font-size: 1rem;
            }

            .partner-logo {
                height: 45px;
            }
        }


        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .booking-content {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 600px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .features-grid,
            .experiences-grid {
                grid-template-columns: 1fr;
            }

            /* Hero Mobile */
            .mobile-badge {
                top: 80px;
                right: 15px;
                padding: 8px 15px;
            }

            .mobile-badge .mobile-text {
                font-size: 0.75rem;
            }

            .hero-logo-glow {
                width: 320px;
                height: 320px;
            }

            .hero-logo img {
                max-width: 400px;
            }

            .mobile-badge {
                top: 70px;
                right: 10px;
                padding: 10px 15px;
            }

            .mobile-badge .mobile-icon {
                font-size: 1.5rem;
            }

            .mobile-badge .mobile-text {
                font-size: 0.8rem;
            }

            .van-animation {
                font-size: 2rem;
                bottom: 100px;
            }

            .mobile-service-banner {
                padding: 10px 20px;
            }

            .mobile-service-banner .banner-text {
                font-size: 0.9rem;
            }

            .headline-main {
                font-size: 1.6rem;
            }

            .headline-highlight {
                font-size: 2.2rem;
            }

            .locations-showcase {
                gap: 10px;
            }

            .location-item {
                padding: 10px 12px;
                min-width: 65px;
            }

            .location-item .location-icon {
                font-size: 1.5rem;
            }

            .location-item span {
                font-size: 0.7rem;
            }

            .hero-cta {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .partners-bar {
                padding: 12px 20px;
                gap: 15px;
            }

            .partners-label {
                font-size: 0.7rem;
            }

            .partner-logo {
                height: 40px;
            }

            .hero-cta-container {
                flex-direction: column;
                gap: 15px;
            }
            
            /* Calendário mobile - mais compacto */
            .calendar-wrapper {
                padding: 15px 10px;
            }
            
            .site-calendar-grid {
                gap: 2px;
            }
            
            .site-calendar-day {
                min-height: 40px;
                font-size: 0.75rem;
                padding: 3px 1px;
            }
            
            .site-calendar-day .day-label {
                font-size: 0.55rem;
            }
            
            /* Formulário mobile */
            .contact-form-section {
                padding: 20px 15px;
            }
            
            .form-group {
                margin-bottom: 15px;
            }
            
            .form-group label {
                font-size: 0.9rem;
                margin-bottom: 5px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 15px;
                font-size: 16px;
                border-radius: 10px;
            }
            
            .btn-submit {
                padding: 14px 20px;
                font-size: 1rem;
            }
            
            /* Time slots mobile */
            .site-time-slots-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .site-time-slot {
                padding: 10px 5px;
                font-size: 0.8rem;
            }
            
            /* Legendas calendário */
            .calendar-legend {
                gap: 8px;
            }
            
            .legend-item {
                font-size: 0.75rem;
            }
            
            /* Hero padding ajustado */
            .hero {
                padding: 100px 15px 60px;
            }
            
            .hero-content {
                padding: 20px 15px;
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            /* Hero Tablet */
            .mobile-badge {
                top: 90px;
                right: 20px;
            }

            .hero-logo-glow {
                width: 300px;
                height: 300px;
            }

            .hero-logo img {
                max-width: 320px;
            }

            .hero {
                padding-top: 60px;
                padding-bottom: 30px;
            }

            .headline-main {
                font-size: 2rem;
            }

            .headline-highlight {
                font-size: 2.8rem;
            }

            .locations-showcase {
                gap: 8px;
            }

            .location-item {
                padding: 8px 10px;
                border-radius: 10px;
            }

            .location-item .location-icon {
                font-size: 1.5rem;
                margin-bottom: 4px;
            }

            .location-item span {
                font-size: 0.7rem;
            }

            /* Calendar mobile */
            .site-calendar-grid {
                gap: 3px;
            }
            
            .site-calendar-day {
                font-size: 0.8rem;
                padding: 5px 2px;
            }
            
            .site-calendar-day .day-label {
                font-size: 0.6rem;
            }
            
            /* Form mobile */
            .contact-form-section {
                padding: 20px 15px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 15px;
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            /* Calendar wrapper mobile */
            .calendar-wrapper {
                padding: 15px 10px;
            }
            
            .site-calendar-header {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .site-calendar-nav {
                width: 100%;
                justify-content: space-between;
            }
            
            /* Reservation summary mobile */
            .reservation-summary {
                padding: 15px;
            }
            
            /* Time slots mobile */
            .site-time-slot {
                padding: 10px 5px;
                font-size: 0.85rem;
            }

            /* Feature cards mobile - smaller */
            .feature-card {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                border-radius: 12px;
                margin-bottom: 12px;
            }

            .feature-card h3 {
                font-size: 1rem;
            }

            .feature-card p {
                font-size: 0.85rem;
            }

            /* Experience cards mobile - smaller */
            .experience-card {
                border-radius: 12px;
            }

            .experience-image {
                height: 140px;
            }

            .experience-content {
                padding: 15px;
            }

            .experience-content h3 {
                font-size: 1rem;
            }

            .experience-content p {
                font-size: 0.85rem;
            }

            .experience-meta span {
                font-size: 0.75rem;
            }

            .tag {
                font-size: 0.7rem;
                padding: 3px 8px;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens */
            .site-calendar-day {
                font-size: 0.75rem;
                min-height: 45px;
            }
            
            .calendar-legend {
                flex-direction: column;
                gap: 8px;
            }
            
            .legend-item {
                font-size: 0.8rem;
            }
            
            .btn-submit {
                padding: 14px 20px;
                font-size: 1rem;
            }
            
            nav {
                padding: 15px 20px;
            }
            
            .nav-logo {
                font-size: 1.3rem;
            }
        }

        /* Fix for iOS Safari */
        @supports (-webkit-touch-callout: none) {
            .hero {
                min-height: -webkit-fill-available;
            }
        }

        /* Prevent horizontal scroll */
        body {
            overflow-x: hidden;
        }
    