# Ícone circular suave (B 040)

Categoria: Botões  
Tags: neumorphic, soft-ui, circle, icon  
Página: https://designforai.dev/pt/snippet/btn-040

## Prompt

Um botão de ícone neumórfico redondo de 52px sobre #e0e5ec: mesmo fundo, um ícone de mais índigo #4f46e5 de 20px (SVG inline, stroke 2.5), em relevo com sombras 5px 5px 10px #b8bec7 e -5px -5px 10px branco. No hover o ícone escurece para #3730a3; no active passa para sombras inset de 3px. Outline de foco de 2px índigo.

## HTML

```html
<div style="background:#e0e5ec;padding:28px"><button class="btn-040" aria-label="Add"><svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg></button></div>
```

## CSS

```css
.btn-040 {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #4f46e5;
  background: #e0e5ec;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 5px 5px 10px #b8bec7,-5px -5px 10px #fff;
  transition: box-shadow .15s,color .15s
}
.btn-040:hover {
  color: #3730a3
}
.btn-040:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 3px
}
.btn-040:active {
  box-shadow: inset 3px 3px 6px #b8bec7,inset -3px -3px 6px #fff
}
```
