:root {
    --gold: #c5a059;
    --dark: #0a0a0a;
    --light: #fdfdfd;
}

/* Reset e Base */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-serif {
    font-family: 'Cinzel', serif;
}

.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }

/* Logo e Navbar */
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

#navbar {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
}

.nav-scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 1px; bottom: -4px; left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.95)),        
    url('assets/fundoHeroSection.png');
    background-size: cover; background-position: center; z-index: -1;
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Cartões de Imóveis */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    background: rgba(197, 160, 89, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

/* Transições e Animações */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Ajustes Mobile */
@media (max-width: 768px) {
    .logo-img { height: 40px; }
    #navbar { padding: 1.5rem 1rem; }
}