#scroll-to-top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/* Cambiar posición en dispositivos móviles */
@media (max-width: 767px) {
    #scroll-to-top {
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}