       /* ESTILOS DO SELETOR DE IDIOMAS */
        .lang-selector {
            display: flex;
            gap: 10px;
            align-items: right;
        }
        .lang-flag {
            width: 28px;
            height: auto;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s, transform 0.3s;
            border-radius: 2px;
            border: 1px #777 solid;
            box-shadow: 0 0 0px rgba(200,200,255,0.5);
        }
        .lang-flag:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        /* Ajuste Mobile */
        @media (max-width: 768px) {
            .lang-selector {
                margin-right: 40px;
                margin-left: 10px;
            }
        }