
.toolbar {
    position: fixed;
    top: 20px;
    right: 20px;
}

.icon {
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.icon i {
    font-size: 24px;
    color: #fff; /* Cor dos ícones */
    background-color: #7F8C4D; /* Cor de fundo padrão */
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tooltip {
    display: none;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #8C3A40; /* Cor do fundo da tooltip */
    color: #fff; /* Cor do texto da tooltip */
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    width: 120px;
}

.icon:hover .tooltip {
    display: block;
}

/* Cores dos ícones ao passar o mouse */
#phone:hover i {
    background-color: #D9CF41;
}

#email:hover i {
    background-color: #D9CF41;
}

#address:hover i {
    background-color: #D9CF41;
}
