/* Estilos para el botón flotante */
.floating-button {
    position: fixed;
    bottom: 20px;
    /* Ajusta este valor según sea necesario */
    right: 20px;
    z-index: 100;
    /* Asegura que el botón esté por encima de otros elementos */
    background-color: #28a745;
    /* Color de fondo del botón */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-button img {
    width: 50%;
    height: 50%;
}

.floating-button:hover {
    transform: scale(1.1);
}

/* Asegura que el botón no se sobreponga al footer */
footer {
    position: relative;
    z-index: 101;
    /* Mayor que el z-index del botón flotante */
}