/*=========================================================
=                 BACK TO TOP
=========================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;

    height:50px;

    background:#F15A24;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:999;

}

#backToTop:hover{

    background:#0B1F45;

    color:#ffffff;

    transform:translateY(-5px);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*=========================================================
=                 WHATSAPP FLOAT
=========================================================*/

#whatsappButton{

    position:fixed;

    right:30px;

    bottom:95px;

    width:58px;

    height:58px;

    background:#25D366;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:30px;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.35s;

    z-index:998;

}

#whatsappButton:hover{

    transform:translateY(-5px) scale(1.05);

    color:#ffffff;

}

/*=========================================================
=                 TOOLTIP
=========================================================*/

.whatsapp-tooltip{

    position:absolute;

    right:75px;

    white-space:nowrap;

    background:#0B1F45;

    color:#ffffff;

    padding:10px 16px;

    border-radius:8px;

    font-size:14px;

    font-weight:600;

    opacity:0;

    visibility:hidden;

    transition:.30s;

    pointer-events:none;

}

#whatsappButton:hover .whatsapp-tooltip{

    opacity:1;

    visibility:visible;

}

body{

    padding-top:120px;

}

/*=========================================================
=                 GLOBAL BUTTONS
=========================================================*/

.btn-primary-custom{

    background:#F15A24;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.btn-primary-custom:hover{

    background:#d94d1d;

    color:#fff;

    transform:translateY(-3px);

}

.btn-secondary-custom{

    border:2px solid #F15A24;

    color:#F15A24;

    background:transparent;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.btn-secondary-custom:hover{

    background:#F15A24;

    color:#fff;

}