#floating-widget {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 20px;
    right: 20px;
    background: transparent;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    z-index: 1000;
}

#contacto {
    color: #000000;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 5px;
    height: 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: 10px;
}

#floating-widget img {
    width: 50px; /* Example width, adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

#floating-widget img:hover {
    transform: scale(1.1);
}
