:root {
    --gold: #D4AF37;
    --dark: #0A0A0A;
}

.font-serif { font-family: 'Playfair Display', serif; }

.gold-gradient {
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-glass {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gold-border {
    border: 1px solid transparent;
    background: linear-gradient(#141414, #141414) padding-box,
                linear-gradient(135deg, #BF953F, #FCF6BA, #AA771C) border-box;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.prose-luxury p {
    text-align: justify;
}

/* Scrollbar Customizada */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #D4AF37; }