/* VARIABLES */
:root{
    --azul: #007BFF;
    --amarillo: #f1c40f;
    --blanco: #f9f9f9;
    --negro: #272727;
}

/* Botón de "Volver al Inicio" */
.back-to-top {
    position: fixed;
    bottom: 85px;
    right: 20px;
    display: none; /* Oculto por defecto */
    width: 50px;
    height: 50px;
    background-color: var(--azul); /* Color de fondo */
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.back-to-top img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

/* Efecto hover */
.back-to-top:hover {
    transform: scale(1.1);
}

/* Clase visible */
.back-to-top.visible {
    display: block;
    
}
