/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --gold: #d4af37;
            --gold-gradient: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            --black: #050505;
            --dark-grey: #111;
            --text-grey: #a0a0a0;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            background-color: var(--black);
            color: white;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, .luxury-font {
            font-family: 'Cinzel', serif;
            text-transform: uppercase;
            font-weight: 400;
        }

        /* Smooth Scroll & Scrollbar */
        html { scroll-behavior: smooth; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: var(--gold); }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(100px);
            transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            mix-blend-mode: difference;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 24px;
            letter-spacing: 4px;
            color: white;
            font-weight: 700;
        }
        .menu-btn {
            cursor: pointer;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 10px 25px;
            border-radius: 50px;
            transition: 0.3s;
        }
        .menu-btn:hover {
            background: white;
            color: black;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('../images/db0733743c40c5985fa83382dd65d11f.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
            animation: zoomEffect 30s infinite alternate;
            filter: brightness(0.6) contrast(1.1);
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
            z-index: 2;
        }
        .hero-content {
            z-index: 3;
            text-align: center;
            position: relative;
        }
        .hero-title {
            font-size: 10vw; /* Massive responsive font */
            line-height: 0.85;
            letter-spacing: -2px;
            color: white;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 1.5s ease-out forwards 0.5s;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            letter-spacing: 10px;
            color: var(--gold);
            text-transform: uppercase;
            opacity: 0;
            animation: fadeUp 1.5s ease-out forwards 1s;
        }

        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Sticky Scroll Storytelling */
        .sticky-container {
            position: relative;
            height: 400vh; /* Controls the length of the scroll */
            background: var(--black);
        }
        .sticky-image-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        .sticky-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transition: opacity 0.5s;
        }
        .scroll-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
        }
        .scroll-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        .scroll-section h2 {
            font-size: 5rem;
            margin-bottom: 30px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }
        .scroll-section p {
            font-size: 1.5rem;
            max-width: 700px;
            line-height: 1.8;
            color: #ccc;
            font-weight: 300;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--dark-grey);
        }
        .feature-img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            filter: grayscale(100%);
            transition: 0.5s;
        }
        .feature-img:hover {
            filter: grayscale(0%);
        }
        .feature-text {
            padding: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .stat-big {
            font-size: 8rem;
            font-family: 'Cinzel', serif;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.3);
            margin-bottom: 20px;
        }
        .stat-label {
            font-size: 1.5rem;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .stat-desc {
            font-size: 1.1rem;
            color: #888;
            line-height: 1.8;
        }

        /* Full Width Parallax */
        .parallax-section {
            height: 80vh;
            background-image: url('../images/398945b3e06bf3dd8f6579b4fa0a765a.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .parallax-overlay {
            background: rgba(0,0,0,0.5);
            padding: 60px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
            text-align: center;
        }

        /* Footer */
        footer {
            background: black;
            padding: 100px 50px;
            text-align: center;
            position: relative;
        }
        .footer-logo {
            font-size: 3rem;
            font-family: 'Cinzel', serif;
            color: var(--gold);
            margin-bottom: 50px;
            display: inline-block;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: var(--gold);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-title { font-size: 15vw; }
            .scroll-section h2 { font-size: 3rem; }
            .feature-grid { grid-template-columns: 1fr; }
            .feature-text { padding: 60px 30px; }
            .feature-img { height: 50vh; }
            .stat-big { font-size: 5rem; }
            nav { padding: 20px; }
        }