
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 40, 0.1);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.6rem 5%;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(197, 160, 40, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1200;
}

.logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.logo-img {
    height: 70px; /* Tamaño consistente */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(197, 160, 40, 0.3));
    transition: transform 0.3s ease;
}

.nav-links { 
    display: flex; 
    gap: 2rem; 
    list-style: none; 
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 1.2rem; 
    z-index: 1200;
}

/* Botón Hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
}

/* Animación Hamburguesa Activa */
.mobile-menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Estilos Móvil */
@media (max-width: 992px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #0D0D0D;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1100;
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
        border-left: 1px solid rgba(197, 160, 40, 0.2);
    }

    .nav-links.mobile-active { right: 0; }
    
    .nav-links a { font-size: 1.5rem; }
    
    .logo-img { height: 50px; }
}

.lang-switcher {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active { background: var(--accent); color: #000; border-radius: 2px; }
