:root {
    --white: #ffffff;
    --gold-primary: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8941F;
    --black: #0A0A0A;
    --dark-bg: #121212;
    --transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* NAVBAR - FIXA NO TOPO */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    height: 70px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 10000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
}

.logo {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    color: var(--white);
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Playfair Display", serif;
    white-space: nowrap;
}

.gold-text {
    color: var(--gold-primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 0;
    margin: 0;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 70px;
    height: 70px;
    display: inline-block;
    font-family: "Playfair Display", serif;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    padding: 0 10px;
    background: none;
    border: none;
    line-height: 70px;
    height: 70px;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    color: var(--gold-primary);
}