/*----------------------------------------------
*
* [Theme Indigo Stylesheet]
*
* Theme    : Leverage
* Version  : 2.1
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    
    --primary-color: #6b035f;
    --secondary-color: #ec6512;
}

/* #endregion Root */

/*Estilização BTN whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px; /* Alterado de left para right */
    width: 80px;  /* <-- Novo valor */
    height: 80px; /* <-- Novo valor */
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
