.wsp {
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 63px;
    bottom: 25px;
    right: 25px;
    background: #20B038;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: ripple 2s linear infinite;
}

.wsp:hover {
    background: #20B038;

}

@keyframes ripple {
    0% {
            box-shadow: 0 0 0 0 rgb(29, 146, 58),
                    0 0 0 .1rem rgba(0, 255, 0, 0.2),
                    0 0 0 .5rem rgba(0, 255, 13, 0.315);
    }

    100% {
            box-shadow: 0 0 0 .2rem rgba(72, 255, 0, 0.39),
                    0 0 0 .4rem rgba(55, 201, 19, 0.973),
                    0 0 0 .8rem rgba(4, 252, 78, 0.158);
    }
}


/* Facebook */
.btn_facebook {
    background: #1877F2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.btn_facebook:hover {
    background: #145dbf; /* Color más oscuro al pasar el cursor */
}

/* YouTube */
.btn_youtube {
    background: #FF0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.btn_youtube:hover {
    background: #cc0000; /* Color más oscuro al pasar el cursor */
}

/* Instagram */
.btn_instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.btn_instagram:hover {
    background: linear-gradient(45deg, #E5791E, #D02569, #6D2E96); /* Tonos más oscuros */
}

/* TikTok */
.btn_tiktok {
    background: linear-gradient(45deg, #69C9D0, #EE1D52);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.btn_tiktok:hover {
    background: linear-gradient(45deg, #58AAB2, #D41745); /* Tonos más oscuros */
}

/* GPS (Ubicación) */
.btn_gps {

    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}


/* Gmail */
.btn_gmail {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

/* WhatsApp */
.btn_whatsapp {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

