.floating-button {
    all: unset; /* Elimina estilos predeterminados */
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Espaciado entre texto e ícono */
    font-size: 14px;
    font-weight: bold;
    height: 35px;
    padding: 0 10px; /* Espaciado horizontal */
    border-radius: 10px; /* Bordes redondeados para darle forma de píldora */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2); /* Sombra para resaltarlo */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordes sutiles que se adaptan a cualquier fondo */
    background: linear-gradient(135deg, #111, #333); /* Fondo degradado adaptable a cualquier fondo */
    color: #FFFFFF; /* Color de texto blanco */
    transition: all 0.3s ease; /* Transición suave en hover */
}

.floating-button:hover {
    background: linear-gradient(135deg, #333, #111); /* Invertir el degradado en hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4); /* Incrementar sombra */
    transform: translateY(-2px); /* Efecto de elevación */
}

.floating-button img {
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 600px) {
    .floating-button {
        top: 15px;
        right: 15px;
        font-size: 12px;
        height: 30px;
        padding: 0 8px;
    }
}
