/* Estilos para el botón de WhatsApp */
.button-whatsapp {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #4eae49;
     
    
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    position: fixed;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    right:30px;    
    text-align: center;
    margin-left: 0;
    /*margin-bottom: 50;*/
    margin-right: 50;
    object-position: right;
    bottom:30px;
    background: #4eae49;
    color: #fff;
    border-radius: 25px;
    /*font-size: 30px;*/
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    text-decoration: none;
}
/* Estilo para la imagen dentro del botón */
.button-whatsapp img {
    width: 100px;
    height: 100px;
    margin-right: 50px;
    filter: invert(1);
    /* Esto convierte los colores de la imagen a blanco. Puedes ajustarlo o eliminarlo según la imagen que uses */
}
/* Efectos al pasar el ratón por el botón */
.button-whatsapp:hover {
    text-decoration: none;
    color:#308d2c;
    background-color: #fff;

    /*box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);*/
}
.button-whatsapp:active {
    text-decoration: none;
    background-color: #169E49;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

