/* Estilos del botón Scroll to Top */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #84cb11 0%, #2575fc 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

#scrollToTopBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
}

#scrollToTopBtn:active {
    transform: scale(0.95);
}

/* Animación suave para todo el documento */
html {
    scroll-behavior: smooth;
}