#inscribite-button {
    position: fixed;
    bottom: 300px;
    right: 20px;
    z-index: 9999;
}

.boton-inscribite {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ea8233;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 1.6s infinite;
    transition: background-color .25s ease, transform .15s ease;
    box-shadow: 0 8px 20px rgba(234,130,51,.35);
}

.boton-inscribite::before {
    content: "";
    width: 28px;
    height: 28px;
    display: block;
    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%3E%0A%20%20%3Crect%20x%3D%2214%22%20y%3D%228%22%20width%3D%2228%22%20height%3D%2240%22%20rx%3D%223%22%20stroke%3D%22white%22%20stroke-width%3D%224%22/%3E%0A%20%20%3Cpath%20d%3D%22M42%208v8h8%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%20fill%3D%22none%22/%3E%0A%20%20%3Cline%20x1%3D%2220%22%20y1%3D%2222%22%20x2%3D%2236%22%20y2%3D%2222%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22/%3E%0A%20%20%3Cline%20x1%3D%2220%22%20y1%3D%2230%22%20x2%3D%2236%22%20y2%3D%2230%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22/%3E%0A%20%20%3Cline%20x1%3D%2220%22%20y1%3D%2238%22%20x2%3D%2232%22%20y2%3D%2238%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22/%3E%0A%20%20%3Cpath%20d%3D%22M38%2044l14-14%206%206-14%2014-7%201%201-7z%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%20fill%3D%22none%22%20stroke-linejoin%3D%22round%22/%3E%0A%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.boton-inscribite:hover {
    background-color: #d7742c;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 22px rgba(234,130,51,.45);
}

@keyframes pulse {
    0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(234,130,51,.55); }
    70%  { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(234,130,51,0); }
    100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(234,130,51,0); }
}
