.lang-switcher {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-item {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400; /* cambia a 500 o 600 si tu menú es más grueso */
    letter-spacing: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lang-item:hover {
    opacity: 0.7;
}