/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/
Description: Child Theme de Kadence
Author: MasDataTech
Template: kadence
Version: 1.0
*/

/* Aquí van tus CSS personalizados */
.mdt-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    z-index:9999;
    font-family:inherit;
    font-weight:600;
    transition:.25s ease;
}

.mdt-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.30);
}

.mdt-whatsapp svg{
    width:26px;
    height:26px;
    flex-shrink:0;
}

.mdt-whatsapp span{
    white-space:nowrap;
}

@media (max-width:768px){

    .mdt-whatsapp{
        width:60px;
        height:60px;
        border-radius:50%;
        padding:0;
        justify-content:center;
    }

    .mdt-whatsapp span{
        display:none;
    }
}