#nextSection {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    animation: float 2s ease-in-out infinite;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#nextSection.visible {
    opacity: 1;
    visibility: visible;
}

#nextSection:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Nova animação float mais suave */
@keyframes float {
    0% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
    100% {
        transform: translateX(-50%) translateY(0px);
    }
}

/* Animação de pulse para o ícone */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

#nextSection .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #7D65E1; /*#FFFFFF;*/
    animation: pulse 2s infinite ease-in-out;
    z-index: 1001; /* Garantindo que o ícone fique acima do botão */
}