
        :root {
            --accent: #d4a373;
            --dark: #0f0f0f;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: #fefae0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Vídeo de Fundo Fixo (Global) */
        .video-background {
            position: fixed;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -10;
            object-fit: cover;
        }

        .global-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(15, 15, 15, 0.4), rgba(15, 15, 15, 0.9));
            z-index: -9;
        }

        /* Hero Section */
        .hero-container {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* 3D Tilt Card Styles */
        .card-container {
            perspective: 1200px;
        }

        .card-3d {
            transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
            transform-style: preserve-3d;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .card-content {
            transform: translateZ(60px);
        }

        .card-3d:hover {
            box-shadow: 0 30px 60px -12px rgba(212, 163, 115, 0.2);
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.07);
        }

        /* Galeria Styles */
        .gallery-item {
            overflow: hidden;
            border-radius: 1.5rem;
            position: relative;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .gallery-item img {
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Estilos do Modal da Galeria */
        #gallery-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #gallery-modal.active {
            display: flex;
            opacity: 1;
        }

        #modal-img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        #gallery-modal.active #modal-img {
            transform: scale(1);
        }

        #close-modal {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        #close-modal:hover {
            transform: rotate(90deg) scale(1.2);
            color: var(--accent);
        }

        /* Navbar glass effect */
        .nav-glass {
            background: rgba(15, 15, 15, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Map Customization */
        .map-container iframe {
            filter: grayscale(1) invert(0.9) contrast(1.2);
            border-radius: 1.5rem;
        }
        footer a {
            color: #4CAF50;
            font-weight: bold;
            text-decoration: none;
        }