html {
    scroll-behavior: smooth;
}
body {
    font-family: "Quicksand", sans-serif;
    /*-webkit-user-select: none; !* Chrome, Safari *!*/
    /*-moz-user-select: none;    !* Firefox *!*/
    /*-ms-user-select: none;     !* IE10+ *!*/
    /*user-select: none;         !* Padrão *!*/
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}


#ButtonScrollTop {
    /* display: none; */
    position: fixed;
    bottom: 6rem;
    right: 1.3rem;
    z-index: 99;
}

#ButtonInstagram {
    position: fixed;
    bottom: 1rem;
    right: 1.4rem;
    z-index: 99;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}

#ButtonInstagram:hover {
    background: linear-gradient(45deg, #d87e2a 0%, #cf5a30 25%, #c21f38 50%, #b31d5b 75%, #a51378 100%);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #F0F1F3 !important;
}

.nav-link {
    font-weight: 600;
}

.btn {
    border-radius: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-success {
    --bs-btn-color: #FFFFFF;
    --bs-btn-bg: #185E34;
    --bs-btn-border-color: #185E34;
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #FFFFFF;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #FFFFFF;
    --bs-btn-disabled-bg: #185E34;
    --bs-btn-disabled-border-color: #185E34;
}

.text-success {
    color: #185E34!important;
}