
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(10,36,99,0.04);
    border-bottom: 1px solid rgba(10,36,99,0.06);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark-bg);
    text-decoration: none;
    letter-spacing: 1.5px;
}

.logo-img {
    height: 64px; /* Ajustado para el nuevo logo PNG */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(255,140,34,0.18)); /* sombra con naranja */
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover .logo-img {
    transform: scale(1.04) rotate(-1deg);
}

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

.nav-links a {
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 1.5rem; 
}

.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.lang-btn.active { 
    background: var(--printext-orange);
    color: var(--white);
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .logo-img { height: 52px; } /* Ajuste para móviles para que no ocupe demasiado */
}
