/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

/* Menu de setores */
.whatsapp-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.whatsapp-menu a {
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.whatsapp-menu a:hover {
    background-color: #f1f1f1;
}

.whatsapp-menu a:last-child {
    border-bottom: none;
}

