:root {
    --gold: #c9a96e;
    --gold-dark: #a68954;
    --dark: #0f0f0f;
    /* Mais profundo que o anterior */
    --card: #161616;
    --text: #ffffff;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* Animações de Entrada */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar de Luxo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(21, 21, 21, 0.50);
    backdrop-filter: blur(12px);
    z-index: 2000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.logo h2 {
    font-family: 'Monteserrat', sans-serif;
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 3px;
    font-weight: normal;
}

/* Hero Section Imersiva */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.05) 0%, rgba(15, 15, 15, 1) 70%),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.65rem, 10vw, 6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content h1 span {
    color: var(--gold);
    font-style: italic;
}

/* Seção "A Arte" - Grid Assimétrico */
.story-section {
    padding: 150px 10%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.story-text p {
    font-size: 1rem;
    font-weight: 200;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 2;
}

.visual-frame {
    position: relative;
    padding: 20px;
    border: 1px solid var(--gold);
}

.visual-frame img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: 0.5s;
}

.visual-frame:hover img {
    filter: grayscale(0%);
}

/* Destaque de Valores */
.manifesto {
    background: var(--card);
    padding: 120px 5%;
    text-align: center;
}

.values-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 20px;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
    opacity: 0.8;
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
}

/* Rodapé de Elegância */
footer {
    padding: 100px 5% 50px;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.15rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: block;
}

.social-links {
    margin-bottom: 40px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 5%;
    }

    .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}