:root {

    /* FONTES*/
    --text-field: 'Noto Serif', sans-serif;
    --text-bold: 'Poppins', sans-serif;
    /* FONTES */

    /* VARIAVEIS DE CORES DAS FONTES DE TEXTOS */
    --text-white: #FFFFFF;
    --text-black: #121212;
    /* VARIAVEIS DE CORES DAS FONTES DE TEXTOS */

}

body {
    scroll-behavior: auto;
    scroll-behavior: smooth;
}

/* ========= RESET PADRÃO ============= */
* {
    margin: 0;
    padding: 0;
}
/* ========= RESET PADRÃO ============= */

/* ========= CONTAINERS ============= */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.w__1240 {
    max-width: 1240px;
    margin: 0 auto;
}
.w__1030 {
    max-width: 1030px;
    margin: 0 auto;
}
.w__920 {
    max-width: 920px;
    margin: 0 auto;
}
.w__820 {
    max-width: 820px;
    margin: 0 auto;
}
/* ========= CONTAINERS ============= */

/* ========= H1, H2, H3 E H4 ============= */
h1, h2, h3, h4 {
    font-family: var(--text-bold);
    font-weight: 700;
}
h1 {
    font-size: 3.75rem;
    line-height: 4.5rem;
}
h2 {
    color: var(--colorprimary);
    font-size: 2.25rem;
    line-height: 2.625rem;
}
h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}
/* ========= H1, H2, H3 E H4 ============= */

/* ========= LIMITAÇÃO DE LINHAS ============= */
.text-truncate-1,
.text-truncate-2,
.text-truncate-3,
.text-truncate-4,
.text-truncate-5,
.text-truncate-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  text-overflow: -o-ellipsis-lastline;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -moz-box-orient: vertical;
}

.text-truncate-1 {
    -webkit-line-clamp: 1
}

.text-truncate-2 {
    -webkit-line-clamp: 2
}

.text-truncate-3 {
    -webkit-line-clamp: 3
}

.text-truncate-4 {
    -webkit-line-clamp: 4
}

.text-truncate-5 {
    -webkit-line-clamp: 5
}

.text-truncate-6 {
    -webkit-line-clamp: 6
}
/* ========= LIMITAÇÃO DE LINHAS ============= */

/* ========= PARÁGRAFOS DE TEXTO ============= */
.text-field {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: var(--text-field);
}
.text-white {
    color: var(--text-white)!important;
}
.text-black {
    color: var(--text-black)!important;
}
/* ========= PARÁGRAFOS DE TEXTO ============= */

/* ========= BOTÕES ============= */
.btn__action {
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    border-radius: 1.875rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--text-bold);
    background-color: var(--colorprimary);
    border: 1px solid var(--colorprimary);
    transition: .3s;
}
.btn__action:hover {
    background-color: transparent;
    border: 1px solid var(--colorprimary);
}
.btn__action:hover span {
    color: var(--colorprimary)!important;
}
/* ========= BOTÕES ============= */

/* ========= BARRA DE MENU ============= */
.bar-menu {
    background-color: var(--colorbackgroundmenu);
    height: 5rem;
    position: sticky;
    z-index: 999;
    transition: .3s;
    top: 0;
}
.nav-bar__item a {
    color: var(--colortextmenu);
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-family: var(--text-bold);
    text-decoration: none;
    transition: .3s;
}
.nav-bar__item a:hover {
    color: var(--colorhovermenu);
}

/* ================== MENU TOPO / MENU DESK ============= */
.menu__desk ul {
    gap: 2rem;
}

/*============== MENU TOPO / MENU MOBILE ==============*/
.menu__mobile {
    display: none;
}
.menu__mobile {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
}

/* ------------ MENU MOBILE ------------- */
.menu-sandwich__icon {
    position: relative;
    background-color: var(--colorsecondary);
    display: block;
    width: 25px;
    height: 4px;
    top: 8px;
    left: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-radius: 5px;
}
.menu-sandwich__icon:before, .menu-sandwich__icon:after {
    background-color: var(--colorsecondary);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: 500ms ease;
    border-radius: 5px;
}
.menu-sandwich__icon:before, .menu-sandwich__icon:after {
    width: 25px;
}
.menu-sandwich__icon:before {
    top: -8px;
}
.menu-sandwich__icon:after {
    top: 8px;
}
/* ------------ MENU MOBILE ------------- */

/* ------------ MENU COM ICONE DE "X" ------------- */
.menu-sandwich__icon.active {
    transform: rotate(45deg);
}
.menu-sandwich__icon.active:before {
    display: none;
}
.menu-sandwich__icon.active:after {
    transform: rotate(-90deg);
    top: 0px;
}
/* ------------ MENU COM ICONE DE "X" ------------- */

/* ------------ BOX COM ITEMS DE MENU MOBILE ------------- */
.menu-mobile__list {
    right: -100%;
    position: fixed;
}
.menu-mobile__list.active {
    position: fixed;
    width: 250px;
    right: 0%;
    background-color: var(--colorprimary);
    z-index: 0;
    opacity: 1;
    transition: all 1s ease;
    overflow: hidden;
    border-bottom-left-radius: 20px;
}
/* ------------ BOX COM ITEMS DE MENU MOBILE ------------- */

/* ------------------- POPUP MODAL -----------------------*/
.overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .8);
    left: 0;
    top: 0;
    display: none;
    position: fixed;
    z-index: 9999;
}
.popup {
    width: calc(100% - 30px);
    padding: 2.5rem;
    border-radius: 0.625rem;
    position: fixed;
    top: 25%;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background-color: #ffffff;
}
.btn-close-know {
    background: transparent;
    outline: none;
    border: 0;
    transition: .5s;
}
.btn-close-know svg #Caminho_1564 path:nth-child(2) {
    fill: #000000;
}
.btn-close-know svg #Caminho_1564 {
    transition: .2s all ease;
}
.btn-close-know:hover svg #Caminho_1564 {
    fill: transparent;
}
.btn-close-know:hover svg #Grupo_9630 rect {
    fill: #000000;
}
/* ------------------- POPUP MODAL -----------------------*/

/* =========== MEDIA QUERY =========== */
@media (max-width: 991px) {
    .bar-menu {
        height: 5rem;
    }
    .menu__mobile {
        display: block;
    }
    .menu__desk {
        display: none;
    }
    .menu-mobile__list.active {
        top: 5rem;
    }
}

@media (max-width: 743px) {
    .bar-menu {
        height: 3.75rem;
    }
    .menu-mobile__list.active {
        top: 3.75rem;
    }
    .popup {
        padding: 1.25rem;
    }
}