        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dourado: #c9a44b;
            --dourado-dark: #a88635;
            --preto: #0f0f0f;
            --preto-claro: #1a1a1a;
            --cinza-escuro: #2a2a2a;
            --bege: #d4c7b5;
            --branco: #f5f1ea;
            --transicao: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--preto);
            color: var(--branco);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Header refinado */
        header {
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(12px);
            padding: 1.2rem 8%;
            position: fixed;
            width: 100%;
            top: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 2px solid rgba(201, 164, 75, 0.15);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            letter-spacing: 3px;
            text-decoration: none;
            position: relative;
        }

        .logo span {
            color: var(--dourado);
            font-style: italic;
            font-weight: 700;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--dourado);
            transition: var(--transicao);
        }

        .logo:hover::after {
            width: 100%;
        }

        nav {
            display: flex;
            gap: 35px;
        }

        nav a {
            color: var(--branco);
            text-decoration: none;
            font-weight: 300;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding: 5px 0;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--dourado);
            transition: var(--transicao);
        }

        nav a:hover::before {
            width: 100%;
        }

        /* Hero com textura */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%), 
                        url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(45deg, rgba(201, 164, 75, 0.02) 0px, rgba(201, 164, 75, 0.02) 2px, transparent 2px, transparent 8px);
            pointer-events: none;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 10vw, 5.5rem);
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeUp 1.2s ease;
        }

        .hero h1 span {
            color: var(--dourado);
            font-style: italic;
            display: block;
            font-size: 1.2em;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 50px;
            max-width: 600px;
            color: var(--bege);
            font-weight: 300;
            letter-spacing: 1px;
            animation: fadeUp 1.2s ease 0.2s both;
        }

        .btn-whatsapp {
            background: transparent;
            color: var(--dourado);
            padding: 18px 50px;
            border: 2px solid var(--dourado);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            overflow: hidden;
            transition: var(--transicao);
            z-index: 1;
            animation: fadeUp 1.2s ease 0.4s both;
        }

        .btn-whatsapp::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--dourado);
            transition: var(--transicao);
            z-index: -1;
        }

        .btn-whatsapp:hover {
            color: var(--preto);
        }

        .btn-whatsapp:hover::before {
            left: 0;
        }

        /* Sobre refinado */
        #sobre {
            background: var(--preto-claro);
            position: relative;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text h2 {
            text-align: left;
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 30px;
            position: relative;
        }

        .about-text h2 span {
            color: var(--dourado);
            font-style: italic;
            display: block;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--dourado);
        }

        .about-text p {
            color: #b5aa9a;
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--dourado);
            z-index: 1;
            transition: var(--transicao);
        }

        .about-image:hover::before {
            top: 10px;
            left: 10px;
        }

        .about-image img {
            width: calc(100% - 40px);
            height: 500px;
            object-fit: cover;
            filter: grayscale(80%);
            transition: var(--transicao);
            position: relative;
            margin: 20px;
            z-index: 2;
        }

        .about-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Galeria aprimorada */
        #galeria {
            background: var(--preto);
            padding: 100px 5%;
        }

        #galeria h2 {
            font-size: 3.5rem;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        #galeria h2::before,
        #galeria h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 1px;
            background: var(--dourado);
        }

        #galeria h2::before {
            left: -80px;
        }

        #galeria h2::after {
            right: -80px;
        }

        .carousel-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .carousel {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 30px 50px rgba(0,0,0,0.7);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
        }

        .carousel img {
            width: 100%;
            flex-shrink: 0;
            height: 550px;
            object-fit: cover;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 55px;
            height: 55px;
            background: rgba(0,0,0,0.7);
            border: 2px solid var(--dourado);
            color: var(--dourado);
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: var(--transicao);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: var(--dourado);
            color: var(--preto);
        }

        .prev {
            left: -25px;
        }

        .next {
            right: -25px;
        }

        /* Preços */
        #precos {
            background: linear-gradient(135deg, var(--preto-claro) 0%, var(--preto) 100%);
            padding: 100px 5%;
        }

        .price-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 164, 75, 0.2);
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            border-bottom: 1px dashed rgba(201, 164, 75, 0.3);
            transition: var(--transicao);
            cursor: pointer;
        }

        .price-row:last-child {
            border-bottom: none;
        }

        .price-row:hover {
            transform: translateX(15px);
            border-bottom-color: var(--dourado);
        }

        .price-name {
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            padding-left: 20px;
        }

        .price-name::before {
            content: '✧';
            position: absolute;
            left: 0;
            color: var(--dourado);
            opacity: 0;
            transition: var(--transicao);
        }

        .price-row:hover .price-name::before {
            opacity: 1;
        }

        .price-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dourado);
            font-family: 'Playfair Display', serif;
        }

        /* WhatsApp flutuante */
        .whatsapp-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            z-index: 9999;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: var(--transicao);
            border: 2px solid transparent;
        }

        .whatsapp-fixed:hover {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--branco);
        }

        .whatsapp-fixed svg {
            width: 35px;
            height: 35px;
        }

        /* Footer */
        footer {
            background: #080808;
            padding: 80px 20px;
            text-align: center;
            border-top: 2px solid rgba(201, 164, 75, 0.1);
            position: relative;
        }

        footer p {
            color: #5a5a5a;
            font-size: 0.95rem;
            letter-spacing: 1px;
            margin: 5px 0;
        }

        footer p:first-child {
            color: var(--dourado);
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        /* Animações */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Menu hamburguer */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--dourado);
            transition: var(--transicao);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10,10,10,0.97);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                z-index: 1000;
            }

            nav.open {
                display: flex;
            }

            nav a {
                font-size: 1.2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text h2 {
                text-align: center;
            }

            .about-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .carousel-btn {
                display: none;
            }

            #galeria h2::before,
            #galeria h2::after {
                width: 30px;
            }

            #galeria h2::before {
                left: -40px;
            }

            #galeria h2::after {
                right: -40px;
            }

            .carousel img {
                height: 400px;
            }

            .price-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1rem 5%;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero p {
                font-size: 1rem;
                padding: 0 10px;
            }

            .btn-whatsapp {
                padding: 15px 30px;
                font-size: 0.8rem;
            }

            .about-image img {
                height: 280px;
                width: 100%;
                margin: 0;
            }

            .about-image::before {
                display: none;
            }

            #sobre {
                padding: 60px 5%;
            }

            #galeria {
                padding: 60px 5%;
            }

            #galeria h2 {
                font-size: 2rem;
            }

            .carousel img {
                height: 260px;
            }

            #precos {
                padding: 60px 5%;
            }

            #precos h2 {
                font-size: 2rem;
            }

            .price-name {
                font-size: 1rem;
            }

            .price-value {
                font-size: 1.1rem;
            }

            footer {
                padding: 50px 20px;
            }

            .whatsapp-fixed {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }
        }