
        :root {
            --charcoal: #121212;
            --ivory: #F5F1EA;
            --sand: #C2A17D;
            --moss: #3F4A3C;
        }

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

        body {
            font-family: 'Lato', sans-serif;
            font-weight: 300;
            background-color: var(--ivory);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 5%;
            background: linear-gradient(180deg, var(--ivory) 0%, rgba(245, 241, 234, 0.95) 80%, transparent 100%);
            z-index: 1000;
            backdrop-filter: blur(8px);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            height: 60px;
            width: auto;
            opacity: 0;
            animation: fadeInDown 1.2s ease-out 0.3s forwards;
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 0.4em;
            color: var(--charcoal);
            opacity: 0;
            animation: fadeInDown 1.2s ease-out 0.5s forwards;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.95rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.4s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--sand);
            transition: width 0.4s ease;
        }

        .nav-links a:hover {
            color: var(--sand);
        }

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

        .lang-selector {
            display: flex;
            gap: 0.8rem;
        }

        .lang-btn {
            background: none;
            border: 1px solid var(--charcoal);
            color: var(--charcoal);
            padding: 0.4rem 0.9rem;
            font-family: 'Lato', sans-serif;
            font-weight: 300;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-btn.active,
        .lang-btn:hover {
            background: var(--charcoal);
            color: var(--ivory);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--ivory) 0%, #e8e4dc 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            font-weight: 300;
            color: var(--charcoal);
            margin-bottom: 2rem;
            line-height: 1.2;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 0.8s forwards;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            color: var(--moss);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 1.2s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            background: transparent;
            border: 1.5px solid var(--charcoal);
            color: var(--charcoal);
            text-decoration: none;
            font-family: 'Lato', sans-serif;
            font-weight: 300;
            font-size: 0.95rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 1.6s forwards;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--charcoal);
            transition: left 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--ivory);
        }

        .hero-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid var(--sand);
            opacity: 0.3;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .deco-1 {
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .deco-2 {
            bottom: 15%;
            right: -8%;
            animation-delay: 2s;
        }

        /* About Section */
        .about {
            padding: 10rem 5%;
            background: var(--charcoal);
            color: var(--ivory);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .about-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            color: var(--sand);
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .about-image {
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, var(--moss) 0%, #2a3329 100%);
            position: relative;
            overflow: hidden;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border: 2px solid var(--sand);
            opacity: 0.4;
        }

        /* Values Section */
        .values {
            padding: 10rem 5%;
            background: var(--ivory);
        }

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

        .values-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 6rem;
            color: var(--charcoal);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .value-item {
            text-align: center;
            padding: 3rem 2rem;
            transition: transform 0.4s ease;
        }

        .value-item:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border: 2px solid var(--sand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--moss);
        }

        .value-item h3 {
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            color: var(--charcoal);
        }

        .value-item p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--moss);
            opacity: 0.9;
        }

        /* Gallery Section */
        .gallery {
            padding: 10rem 5%;
            background: var(--moss);
        }

        .gallery-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 6rem;
            color: var(--ivory);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            height: 450px;
            background: linear-gradient(135deg, var(--sand) 0%, #9d8560 100%);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s ease;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            border: 1px solid var(--ivory);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item {
            height: 450px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s ease;
            /* remove o background daqui porque agora é imagem */
            background: none;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;   /* preenche sem distorcer */
            display: block;      /* tira “gaps” estranhos */
            transform: scale(1);
            transition: transform 0.6s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item:hover img {
            transform: scale(1.07); /* zoom suave na imagem */
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            border: 1px solid var(--ivory);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none; /* importante: não “bloqueia” o hover */
        }

        .gallery-item:hover::after {
            opacity: 0.6;
        }

        /* Contact Section */
        .contact {
            padding: 10rem 5%;
            background: var(--ivory);
            text-align: center;
        }

        .contact-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--charcoal);
        }

        .contact-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            color: var(--moss);
            margin-bottom: 4rem;
        }

        .contact-email {
            display: inline-block;
            font-size: 1.5rem;
            color: var(--sand);
            text-decoration: none;
            letter-spacing: 0.1em;
            border-bottom: 1px solid var(--sand);
            padding-bottom: 0.3rem;
            transition: all 0.3s ease;
        }

        .contact-email:hover {
            color: var(--charcoal);
            border-bottom-color: var(--charcoal);
        }

        /* Footer */
        footer {
            padding: 4rem 5%;
            background: var(--charcoal);
            color: var(--ivory);
            text-align: center;
        }

        .footer-brand {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 0.5em;
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--ivory);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-copyright {
            font-size: 0.85rem;
            opacity: 0.6;
            letter-spacing: 0.1em;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 2rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1.5rem 4%;
            }

            .brand-name {
                font-size: 1.2rem;
            }

            .logo-img {
                height: 45px;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .about-content h2,
            .values-title,
            .gallery-title,
            .contact-title {
                font-size: 2.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        /* Hidden content for different languages */
        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .lang-content.active.inline {
            display: inline;
        }
