/* Estilos para a Top Bar */
.top-bar {
    width: 100%;
    height: 35px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Alinhamento do item à esquerda */
.left-item .article-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Triângulo antes do "Artigos" */
.left-item .triangle {
    width: 0;
    height: 0;
    border-left: 7px solid #8B0000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: transform 0.3s ease; /* Transição suave */
}

/* Alinhamento dos itens à direita */
.right-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Links à direita */
.right-items a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Ícones à direita */
.right-items .bi-globe, .right-items .bi-whatsapp {
    font-size: 16px;
}

/* Estilo do link do WhatsApp */
.right-items .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Triângulo antes do ícone do WhatsApp */
.right-items .triangle {
    width: 0;
    height: 0;
    border-left: 7px solid #8B0000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: transform 0.3s ease; /* Transição suave */
}

/* Efeito de hover: Triângulo gira para baixo */
.left-item .article-link:hover .triangle,
.right-items .whatsapp-link:hover .triangle {
    transform: rotate(90deg); /* Gira o triângulo para baixo */
}