/* CONTENEDOR PRINCIPAL */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    cursor: grab;
    user-select: none;
}


/* TARJETA DE AYUDA */
.whatsapp-box {

    background: white;
    width: 280px;
    padding: 18px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    margin-bottom: 15px;

    animation: aparecer 0.5s ease;

    position: relative;
}


.whatsapp-box h3 {

    margin: 0;
    font-size: 16px;
    color: #222;

}


.whatsapp-box p {

    margin: 8px 0 0;
    color: #555;
    font-size: 14px;

}


/* BOTON CERRAR */

.whatsapp-close {

    position: absolute;

    right: 12px;
    top: 10px;

    border: none;
    background: transparent;

    font-size: 18px;

    cursor: pointer;

    color: #777;

}


/* BOTON WHATSAPP */

.whatsapp-button {

    width: 65px;
    height: 65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

    animation:pulso 2.5s infinite;

}


/* HOVER */

.whatsapp-button:hover {

    transform:scale(1.08);

}


/* ANIMACIONES */

@keyframes aparecer {

    from {

        opacity:0;
        transform:translateY(30px);

    }

    to {

        opacity:1;
        transform:translateY(0);

    }

}


@keyframes pulso {


    0% {

        box-shadow:0 0 0 0 rgba(37,211,102,.6);

    }


    70% {

        box-shadow:0 0 0 15px rgba(37,211,102,0);

    }


    100% {

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}



/* MOVIL */

@media(max-width:600px){


.whatsapp-container{

    right:15px;
    bottom:15px;

}


.whatsapp-box{

    width:250px;

}



}