/* ===== NAVBAR SIMPLES E MODERNO ===== */

/* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
}

.nav-logo:hover .logo {
    transform: scale(1.02);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Dropdown Desktop */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none !important;
    border: none !important;
    color: #333 !important;
    text-decoration: none !important;
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.dropdown-toggle:hover {
    color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE RESPONSIVO ===== */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem 0;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        margin: 0;
        border-radius: 0;
        color: #333;
        font-size: 1.1rem;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }
    
    /* Mobile Dropdown */
    .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        margin: 0;
        border-radius: 0;
        color: #333;
        font-size: 1.1rem;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        min-width: auto;
        border-radius: 0;
    }
    
    .dropdown-content a {
        padding: 1rem 3rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-toggle {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-content a {
        padding: 0.8rem 2.5rem;
        font-size: 0.95rem;
    }
}