/* ==========================================================
   Widget flotante CUL
========================================================== */

.cul-contact-widget{
    position:fixed;
    right:20px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.cul-contact-btn{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:180px;
    padding:13px 18px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.20);
    transition:.25s;
}

.cul-contact-btn:hover{
    transform:translateY(-2px);
    text-decoration:none;
    color:#fff;
}

.cul-phone{
    background:#ff7a00;
}

.cul-whatsapp{
    background:#25D366;
}

.cul-contact-btn i{
    font-size:22px;
}



/* ==========================================================
   Popover
========================================================== */

#cul-phone-popover{

    position:fixed;

    display:none;

    width:260px;

    background:#fff;

    border-radius:14px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    padding:18px;

    z-index:100000;

    animation:culFade .20s ease;

}

/* Flecha */

#cul-phone-popover::after{

    content:"";

    position:absolute;

    right:-10px;

    top:30px;

    border-width:10px 0 10px 10px;

    border-style:solid;

    border-color:transparent transparent transparent white;

}

.cul-popover-title{

    font-size:18px;

    font-weight:700;

    color:#ff7a00;

    margin-bottom:15px;

}

.cul-popover-title i{

    margin-right:6px;

}

.cul-popover-number{

    font-size:24px;

    font-weight:bold;

    color:#1d3557;

    margin-bottom:18px;

    text-align:center;

}

#cul-copy-phone{

    width:100%;

    border:none;

    background:#ff7a00;

    color:#fff;

    padding:12px;

    border-radius:10px;

    cursor:pointer;

    font-weight:bold;

    transition:.25s;

}

#cul-copy-phone:hover{

    background:#e86d00;

}



/* ==========================================================
   Toast
========================================================== */

.cul-toast{

    position:fixed;

    right:30px;

    bottom:40px;

    background:#2ecc71;

    color:#fff;

    padding:12px 20px;

    border-radius:10px;

    font-weight:bold;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    z-index:999999;

}



/* ==========================================================
   Animaciones
========================================================== */

@keyframes culFade{

    from{

        opacity:0;

        transform:translateX(15px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



/* ==========================================================
   Responsive
========================================================== */

@media(max-width:768px){

    .cul-contact-btn{

        width:58px;

        height:58px;

        justify-content:center;

        min-width:auto;

        padding:0;

    }

    .cul-contact-btn span{

        display:none;

    }

    #cul-phone-popover{

        width:220px;

    }

    .cul-popover-number{

        font-size:20px;

    }

}