.go-btn {
    position: absolute;
    top: 84vh;
    right: 65px;
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important; /* Forza la rimozione di altre trasformazioni */
}

.go-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
    color: #000;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform-origin: center center !important;
    will-change: transform;
}

.section-white .go-btn {
    opacity: 0;
    pointer-events: none;
}

.go-btn:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .go-btn {
        position: absolute; /* Cambiato da fixed a absolute */
        left: 50%;
        top: 80%;
        right: auto;
        transform: translate(-50%, -50%) !important;
        margin: 0;
        z-index: 100;
    }

    /* Mantiene lo stesso comportamento della versione desktop */
    .section-white .go-btn {
        opacity: 0;
        pointer-events: none;
    }
}