```html
```css
.neurônio {
width: 300px;
height: 300px;
background: conic-gradient(#8B0A0A 0%, #2F4F4F 20%, #3F3F3F 40%, #4F4F4F 60%, #5F5F5F 80%, #6F6F6F 100%);
mask-image: radial-gradient(circle, #000 10%, #333);
mask-size: 100% 80%;
mask-position: 50% 50%;
clip-path: polygon(50% 0%, 100% 0%, 100% 25%, 75% 50%, 100% 100%, 50% 100%, 25% 75%, 0% 100%, 0% 25%, 25% 0%);
animation: mon_ticket_glitch_anima 5s infinite;
animation-delay: 0.1s;
animation-fill-mode: forwards;
}
```
```