* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.top-bar {
    background-color: #3c8572; /* Tom de verde da imagem */
    color: #ffffff;
    display: flex;
    justify-content: center; /* Centraliza o conjunto de informações */
    align-items: center;
    padding: 10px 20px;
    gap: 50%; /* Espaço entre o email e o telefone */
    min-height: 40px;
    width: 100%;
}

/* Estilo dos itens individuais */
.top-bar-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

/* Responsividade para celulares */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .separator {
        display: none;
    }
}