/* Estilos para el selector de idioma activo */
.lang-switcher a.lang-active {
    position: relative;
    opacity: 1;
}

.lang-switcher a.lang-active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: #d5bd98;
    /* Color corporativo marrón */
    border-radius: 2px;
}

.lang-switcher a {
    position: relative;
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-switcher a:hover {
    opacity: 1;
}