/*
  ESTILOS PARA OS BOTÕES DE IDIOMA
*/
.language-flags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.language-flags img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-flags a.active img {
    border-color: #b5c48b;
}

.language-flags a:hover img {
    border-color: #8f9b6c;
}