@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");
/**
 * Definições de fontes
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px



 */
:root {
    --bs-gutter-x: 1.5rem;
    --color-black: #121212;
    --color-white: #ffffff;
    --color-primary: #102d54;
    --color-azul-secondary: #0b1e38;
    --color-secondary: #37ee80;
    --Secundria-Green: #37ee80;
    --azul-principal: #1293ef;
    --cinza_01: #ececec;
    --cinza_02: #b8b8b8;
    --cinza_03: #f7f7f7;
    --cinza_04: #6d6d6d;
    --azul_05: #01365b;

    --Neutras-White: #fff;
    --Neutras-Black: #7e7e7e;
    --Blue01-Blue03: #e7f1f8;
    --Blue02-01: #0672b9;
    --Blue01-Blue01: #0672b9;
    --Blue03-01: #08a9cb;
    --Blue02-02: #0b325d;
    --Neutras-Grey02: #c0c0c0;

    --font: "General Sans", sans-serif;
}
*{
    scroll-behavior: smooth;
    font-family: var(--font);
}
.font-normal {
    font-weight: 400 !important;
}
/**
 * bootstrap-table
 */
.bootstrap-table .loading-text {
    font-size: 14px !important;
    font-family: var(--font);
}
.bootstrap-table .fixed-table-loading {
    z-index: 1 !important;
}
/**
 *
 */
#content-modal-response{
    font-size: 15px;
    padding-bottom: 30px;
    word-break: break-all;
}
#loading{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #00000091;
    display: none;
}
#loading svg{
    animation: kaboom 2s ease alternate infinite;
}
/* #loading svg path:nth-child(2) {
    animation: kaboom 2s ease alternate infinite;
    animation-delay: 0.1s;
  } */
  /* #loading svg path:nth-child(3) {
    animation-delay: 0.2s;
    animation: kaboom 5s ease alternate infinite;
  }
  #loading svg path:nth-child(4) {
    animation-delay: 0.3s;
    animation: kaboom 5s ease alternate infinite;
  }
  #loading svg path:nth-child(5) {
    animation-delay: 0.4s;
    animation: kaboom 5s ease alternate infinite;
  } */
@keyframes kaboom {
    0% {
      transform: scale(0.8);
    }
    /* 30% {
      transform: scale(1.1);
    }
    50% {
      transform: scale(1.2);
    }
    70% {
      transform: scale(1.3);
    }
    90% {
      transform: scale(1.4);
    } */
    100% {
      transform: scale(1.5);
    }
  }
/**
 * breadcrumb
 */
#bread-crumbs nav {
    background-color: transparent !important;
    margin-top: 45px;
    margin-bottom: 50px;
}
#bread-crumbs .breadcrumb-item + .breadcrumb-item::before {
    content: url("../img/arrow_bradcrumbs.svg") !important;
    margin: 0 8px;
}
#bread-crumbs a,
#bread-crumbs .breadcrumb-item {
    color: var(--Neutras-Black);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#bread-crumbs .active a {
    color: var(--Blue01-Blue01);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn-mais-detalhe {
    color: var(--Blue01-Blue01, #0672b9);
    /* Button/Button Small */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 32px;
    background-image: linear-gradient(270deg, #fff 0%, #fff 100%);
    padding: 8px 12px;
    display: flex !important;
    align-items: center;
    transition: all 0.2s ease;
}
/* .btn-mais-detalhe::before {
    content: url("../img/icn_download.svg");
    margin-right: 5px;
} */
.btn-mais-detalhe:hover svg path {
    stroke: var(--Neutras-White);
}
.btn-mais-detalhe:hover {
    /* transition: all 2s ease; */
    color: var(--Neutras-White) !important;
    background-image: linear-gradient(270deg, #08a9cb 0%, #0672b9 100%);
}
.btn-azul {
    border-radius: 32px;
    background: var(--Blue03-01, #08a9cb);
    color: var(--Neutras-White, #fff);
    /* Button/Button */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all 0.2s ease;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    min-height: 56px;
}
.btn-azul.icon::after {
    transition: all 0.2s ease;
    content: url("../img/icn_arrow_btn.svg");
}
.btn-azul:hover {
    background: var(--Blue03-02, #067f98);
}
.btn-azul.icon:hover::after {
    rotate: -45deg;
}
/**
 * MODAL
 */
.modal-default {
    --bs-modal-header-border-width: 0px;
    --bs-modal-header-padding: 16px;
    --bs-modal-border-radius: 12px;
    --bs-modal-footer-border-width: 0px;
}
.modal-default .modal-title {
    color: var(--Blue02-01, #0672b9);
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    color: var(--Blue02-01, #0672b9);
    justify-content: space-between;
    width: 100%;
    display: flex;
    align-items: center;
    word-break: break-all;
}
.modal-default .modal-body {
    padding-top: 0;
    padding-bottom: 0;
}
.modal-default .btn-close-sms {
    border-radius: 8px;
    background: var(--Neutras-Grey03, #f7f7f7);
    width: 36px;
    height: 36px;
    border: none;
    outline: none;
    opacity: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-default .frm > div {
    margin-top: 20px;
    margin-bottom: 20px;
}
.modal-default .text {
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    margin: 0 !important;
}
.modal-default .modal-footer {
    padding-top: 0;
}
.modal-default .modal-footer .btn-gradient {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
#min,#sec,#container-timer .sep{
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    margin: 0 !important;
}
#container-timer {
    width: 40px;
}
#try-again .btn-novo-codigo{
    height: 10px;
  padding: 12px 5px;
  min-height: 0;
  font-weight: 400;
  font-size: 13px;
  margin-left: 15px;
}
#message-timer{
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 140% */
    margin: 0 !important;
}
#lgpd{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #FFFFFF;
    width: 100%;
    padding: 30px 0;
}
#lgpd .text{
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 140% */
    margin: 0 !important;
}
/**
 *Formularios
 */
.frm {
}
.frm > div {
    margin-bottom: 20px;
}
.frm label {
    color: var(--Blue01-Blue01, #0672b9);
    /* Subtitle/Subtitle Small */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.6px; /* 140% */
}
.frm input.error,
.form-check-input.error {
    border: 1px solid #e63131 !important;
    --bs-border-color: #e63131;
}

.frm label.error {
    display: none !important;
}
.frm input[type="text"],
.frm input[type="file"],
.frm textarea,
.frm select {
    /* color: var(--Neutras-Grey02, #c0c0c0); */
    color: #171717;
    /* Body/Body */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background: var(--Neutras-Grey03, #f7f7f7);
    outline: none;
    border: none;
    padding: 8px 12px;
    margin-top: 10px;
    width: 100%;
}
.frm input[type="text"]:hover,
.frm input[type="text"]:active,
.frm input[type="text"]:focus,
.frm input[type="text"]:visited,
.frm input[type="file"]:hover,
.frm input[type="file"]:active,
.frm input[type="file"]:focus,
.frm input[type="file"]:visited {
    outline: none !important;
    border: none;
    box-shadow: none;
    background: var(--Neutras-Grey03, #f7f7f7);
}
.frm input[type="text"],
.frm select {
    min-height: 43px;
}
.frm input[type="file"]::file-selector-button {
    border-radius: 4px;
    background: var(--Neutras-Grey01, #dfdfdf);
    color: var(--Neutras-Black, #7e7e7e);
    text-align: center;
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    padding: 3px;
    width: 98px;
}
.frm .form-check-inline label {
    position: relative;
    top: 3px;
    padding-left: 8px;
}
.frm input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    background-color: var(--Neutras-Grey03, #f7f7f7);
}
.frm input[type="checkbox"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.frm textarea {
    min-height: 150px;
}
.frm select {
    appearance: none;
    background-image: url("../img/arrow_select.svg");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
}
.frm .btn-submit {
    border-radius: 32px;
    background: var(--Blue03-01, #08a9cb);
    min-height: 52px;
    color: var(--Neutras-White, #fff);
    text-align: center;
    /* Button/Button */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100px;
    transition: all 0.2s ease;
}
.frm .btn-submit:hover {
    color: var(--Neutras-White, #fff);
    background: var(--Blue03-02, #067f98);
}
.frm .btn-limpar-filtro {
    border-radius: 32px;
    border: 1px solid var(--Blue03-01, #08a9cb);
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    min-height: 52px;
}

.frm .btn-limpar-filtro:hover,
.frm .btn-limpar-filtro:active,
.frm .btn-limpar-filtro:focus,
.frm .btn-limpar-filtro:visited
{
    border: 1px solid var(--Blue03-01, #08a9cb) !important;
    color: var(--Blue01-Blue01, #0672b9) !important;
}
.frm .title-section-frm {
    color: #0672b9;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.frm .mod-label-gray label {
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.frm .btn-icon {
    border-radius: 4px;
    background: var(--Blue01-Blue03, #e7f1f8);
}
/**
 * bootstrap style
 */
.table {
    margin: 0 !important;
}
.container-table {
    margin-top: 36px;
    margin-bottom: 36px;
    --bs-table-bg: var(--Neutras-Grey03, #f7f7f7);
    --border-radius: 12px;
    border-radius: var(--border-radius);
    background-color: var(--bs-table-bg);
    padding: 12px 12px 0 12px;
}
.container-table .table th {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.6px; /* 140% */
    padding: 12px;
    background: none;
    vertical-align: middle;
}
.container-table .table td {
    background: none;
    padding: 16px 12px;
    color: var(--Neutras-Black, #7e7e7e);
    /* Body/Body */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    vertical-align: middle;
}
.container-table tr:last-child td {
    border: none;
}
/* .container-table tr:first-child th:first-child {
    border-top-left-radius: var(--border-radius);
}

.container-table tr:first-child th:last-child {
    border-top-right-radius: var(--border-radius);
}
.container-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius);
}
.container-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius);
} */
.hide {
    display: none !important;
}
* {
    font-family: var(--font);
}

a,
a:hover {
    text-decoration: none !important;
}
html,
body {
    font-weight: 400 !important;
    font-family: var(--font);
    font-size: 12px;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 !important;
    color: #15191d;
    scroll-behavior: smooth;
    background-color: var(--color-white);
    padding: 0;
    margin: 0;
}
.font-light {
    font-weight: 400 !important;
    font-family: var(--font);
}
.font-regular {
    font-weight: 400 !important;
    font-family: var(--font);
}
.font-medium {
    font-weight: 500 !important;
    font-family: var(--font);
}
.font-bold {
    font-weight: 700 !important;
    font-family: var(--font);
}
.ftz-10 {
    font-size: 10px !important;
}
.ftz-11 {
    font-size: 11px !important;
}
.ftz-12 {
    font-size: 12px !important;
}
.ftz-14 {
    font-size: 14px !important;
}
.ftz-15 {
    font-size: 15px !important;
}
.ftz-16 {
    font-size: 16px !important;
}
.ftz-18 {
    font-size: 18px !important;
}
.ftz-20 {
    font-size: 20px !important;
}
.ftz-24 {
    font-size: 24px !important;
}
.ftz-26 {
    font-size: 26px !important;
}
.ftz-28 {
    font-size: 28px !important;
}
.ftz-36 {
    font-size: 36px !important;
}
.ftz-48 {
    font-size: 48px !important;
}
.ftz-56 {
    font-size: 56px !important;
}
.ftz-64 {
    font-size: 64px !important;
}

.text {
    color: var(--Neutras-Black);
    font-family: var(--font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/**
 * Header
 */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 3;
    --bg: rgba(11, 50, 93, 0.9);
    /*rgba(11, 30, 56, 0.90); */
    /*rgba(11, 50, 93, 0.90); */
}
nav {
    background: rgba(11, 50, 93, 0.9);
}
.nav-menu {
    background-color: transparent;
    position: relative;
    padding: 20px 0;
    transition: all 0.2s ease;
}
.nav-menu.bg,
#menu-mobile.bg {
    background: var(--bg);
    padding: 16px 0;
}
#menu-mobile.active .container-scroll{
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.nav-menu .btn-green {
    max-width: 180px;
    min-width: 180px;
}
.nav-menu.bg .brand-top {
    /* width:109px */
}
.menu-anterior {
    background: var(--bg);
}
.menu-anterior .container {
    border-bottom: 1px solid rgba(6, 114, 185, 0.5);
}
.menu-anterior .container-menu-anterior {
    justify-content: end;
}
.menu-anterior.active-scroll .container-menu-anterior {
    justify-content: center;
}
.menu-anterior ul {
    padding: 8px 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.menu-anterior li {
    list-style: none;
}
.menu-anterior li.dot {
    display: flex;
    margin: 0 24px;
}
.menu-anterior li.dot:last-child {
    display: none !important;
}

.menu-anterior a {
    color: var(--Neutras-White);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.format-svg-menu svg {
    width: 33px;
    height: 33px;
}
.format-svg-menu svg path{
    stroke:  var(--Neutras-Black);
}
.menu {
    padding: 0;
    margin: 0;
}
#menu-topo {
    margin-top: 25px;
}
#menu-menu-topo li {
    list-style: none;
}

#menu-menu-topo li.menu-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
}
#menu-menu-topo li.menu-dropdown > a::after {
    content: url("../img/arrow_menu.svg");
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#menu-menu-topo li.menu-dropdown,
#menu-menu-mobile li.menu-dropdown {
    position: relative;
    overflow: hidden;
}
#menu-menu-topo li.menu-dropdown ul,
#menu-menu-mobile li.menu-dropdown ul {
    opacity: 0;
    border-radius: 8px;
    border: 1px solid var(--Neutras-Grey01, #dfdfdf);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.05);
    padding: 16px;
    width: 298px;
    height: 0 !important;
    /* top: -100px; */
    position: absolute;
    /* display: none; */
    transition: opacity 0.5s;
}
/* #menu-menu-topo .active ul{ */
#menu-menu-topo > li.menu-dropdown:hover {
    overflow: inherit;
}
#menu-menu-topo > li.menu-dropdown:hover > ul,
#menu-menu-topo > li.menu-dropdown.active > ul {
    /* display: block; */
    /* top: inherit !important; */
    height: auto !important;
    opacity: 1 !important;
}
#menu-menu-topo li.menu-dropdown ul li {
    border-top: 1px solid #dfdfdf;
    padding-top: 8px;
    padding-bottom: 8px;
}
#menu-menu-topo li.menu-dropdown ul li:first-child {
    border: none;
}
#menu-menu-topo li.menu-dropdown ul a {
    color: var(--Neutras-Black);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.2s ease-in-out;
    width: 100%;
    display: block;
}

#menu-menu-topo li.menu-dropdown ul a:hover {
    color: var(--Blue01-Blue01);
}
#menu-menu-topo li.menu-dropdown ul a:hover::before {
    content: url("../img/arrow_menu_det.svg");
    margin-right: 8px;
}
#menu-menu-topo li.menu-dropdown ul a:hover svg path {
    stroke: var(--Blue01-Blue01);
}
#menu-menu-topo > li > a {
    position: relative;
    overflow: hidden;
}
#menu-menu-topo a {
    font-family: var(--font);
    color: var(--Neutras-White, #fff);
    /* Nav/Nav */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#menu-menu-topo a.link {
    padding: 8px 12px;
    border-radius: 24px;
    transition: all 0.2s ease;
}
#menu-menu-topo a.link:hover {
    color: var(--Blue03-01);
    opacity: 0.8;
    background: var(--Neutras-White, #fff);
}
#menu-menu-topo a.segunda-via,
#menu-mobile a.segunda-via {
    border-radius: 32px;
    border: 2px solid var(--Blue03-01);
    padding: 12px;
    margin-left: 50px;
    margin-right: 8px;
    transition: all 0.2s ease;
}
#menu-menu-topo a.segunda-via:hover,
#menu-mobile a.segunda-via:hover {
    background-color: var(--Blue03-01);
}
#menu-menu-topo a.area-restrita,
#menu-mobile a.area-restrita {
    border-radius: 32px;
    background: var(--Blue03-01);
    padding: 12px;
    margin-left: 8px;
}
#menu-menu-topo a.area-restrita svg,
#menu-mobile a.area-restrita svg {
    margin-right: 8px;
}
/**
* Menu mobile
*/
#menu-mobile {
    /* background-color: var(--color-white); */
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    min-height: 128px;
    /* --bg-mobile:rgba(11, 30, 56, 0.9); */
    --bg-mobile: rgba(11, 50, 93, 0.8);
}
#menu-mobile.active {
    --bg-mobile: #0b325d;
    /* min-height: 580px; */
    background: var(--bg-mobile);
    min-height: 100%;
}
#logo-menu-mobile >img{
    max-width: 50vw;
}
.bg-mobile {
    /* background-color: rgb(21, 25, 29,0.75); */
    /* background-color: transparent; */
    background: var(--bg-mobile);
    min-height: 100px;
    padding: 16px 24px;
}
.open-menu {
    width: 30px;
    height: 20px;
    /* position: absolute;
    margin-top:10px;
    right: 25px; */
    margin-right: 24px;
    cursor: pointer;
}
.icone-menu {
    display: block;
    position: relative;
    cursor: pointer;
    top: -10px;
    left: -10px;
}
.icone-menu .bar {
    position: relative;
    background-color: var(--color-white);
    top: 18px;
    right: -9px;
}
.icone-menu .bar::after,
.icone-menu .bar::before {
    content: "";
}
.icone-menu .bar,
.icone-menu .bar::after,
.icone-menu .bar::before {
    width: 30px;
    height: 2px;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}
.icone-menu .bar::after {
    position: absolute;
    left: 0;
    top: 7px;
    background-color: var(--color-white);
}
.icone-menu .bar::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    background-color: var(--color-white);
}
#menu-mobile.active .icone-menu .bar {
    width: 15px;
}
#menu-mobile.active .icone-menu .bar::before {
    width: 8px;
}
#menu-mobile.active .icone-menu .bar::after {
    width: 30px;
}
.menu-mobile-content {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}
.menu-mobile-content ul {
    display: none;
}
.menu-mobile-content li:first-child {
    margin-top: 60px;
}
.menu-mobile-content li {
    text-align: left;
    margin-bottom: 24px;
    padding-left: 24px;
}
.menu-mobile-content a {
    color: var(--color-white);
    font-size: 20px;
    font-family: var(--font);
    font-weight: 700;
}
.menu-mobile-content a.email {
}
.menu-mobile-content .container-telefone {
    margin-top: 77px;
    margin-bottom: 25px;
}
.menu-mobile-content .email img,
.menu-mobile-content .telefone img {
    margin-right: 10px;
}
.menu-mobile-container {
    display: flex;
}
#menu-mobile .container-btn-externo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 48px;
}
#menu-mobile .container-btn-externo .segunda-via {
    margin: 0;
    margin-bottom: 20px;
    width: 94%;
}
#menu-mobile .container-btn-externo .area-restrita {
    margin-left: 0;
}
#menu-menu-mobile li.menu-dropdown a {
    display: flex;
    justify-content: space-between;
    width: 90%;
}
#menu-menu-mobile li.menu-planos ul a {
    justify-content: start;
}
#menu-menu-mobile li.menu-planos a svg {
    margin-right: 10px;
    min-width: 32px;
}
#menu-menu-mobile li.menu-dropdown a svg path {
    stroke: var(--Blue03-01);
}
#menu-menu-mobile li.menu-dropdown > a::after {
    content: url("../img/arrow_menu.svg");
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#menu-mobile li.menu-dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
#menu-mobile li.menu-dropdown.active > ul {
    display: block !important;
    opacity: 1 !important;
    height: auto !important;
    position: inherit !important;
    background: none;
    border: none;
    width: 100%;
}
#btn-whatsapp {
    border-radius: 48px;
    background: #20d466;
    position: fixed;
    right: 0;
    display: flex;
    height: 70px;
    /* padding: 8px 32px 8px 16px;
    width: 208px; */
    width: 70px;
    padding:0;
    align-items: center;
    z-index: 2;
    top: calc(100vh - 30%);
    transition: all 0.2s ease;
}
#btn-whatsapp > div{
    display: none !important;
}

#btn-whatsapp:hover {
    background-color: #18a14d;
}
#btn-whatsapp .fale,
#btn-whatsapp .especialista {
    margin: 0;
}
#btn-whatsapp .fale {
    width: 100%;
    color: #fff;
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#btn-whatsapp .especialista {
    width: 100%;
    color: #fff;
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
/**
 * Content
 */
#content {
    /* padding-top: 135px; */
    /* padding-bottom: 245px; */
    padding-bottom: 145px;
}
.header-page {
    /* background-image: ; */

    background-repeat: no-repeat;
    background-size: cover;
    background-color: #067f98;
    width: 100%;
    height: 480px;
}
.bg-header-servico {
    background-image: url("../img/bg_servicos.svg");
    /* linear-gradient(180deg, #067f98 68.3%, rgba(6, 127, 152, 0) 100%); */
}
.bg-header-contato {
    background-image: url("../img/bg_contato.jpg");
}
.bg-header-faq {
    background-image: url("../img/bg_faq.svg");
}
.bg-header-planos {
    background-image: url("../img/bg_planos.jpg");
}
.bg-header-trabalhe-conosco {
    background-image: url("../img/bg_trabalhe_conosco.jpg");
}
.bg-header-azul-escuro {
    background-image: url("../img/bg_azul_escuro.svg");
}
.header-page .btn {
    color: var(--Blue02-01);
    text-align: center;
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 52px;
    background: var(--Blue01-Blue03);
}
.header-page h2 {
    color: var(--Neutras-White, #fff);
    text-align: center;

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    width: 100%;
    padding: 16px 0;
}
.header-page .text {
    color: #fff;
    text-align: center;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.title-content {
    color: var(--Blue03-01);
    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}
.text-content {
    color: var(--Neutras-Black);
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}
.title-info {
    color: var(--Blue02-02, #0b325d);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
    margin: 0;
}

/**
 * Style default
 */
#content .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}
.text-destaque {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 39.2px; /* 140% */
}
.text-destaque .detalhe {
    color: var(--Blue03-01, #08a9cb);
}

/**
 * Footer
 */
#footer {
    background: var(--Blue01-Blue03);
    margin-top: 300px;
}
#links-uteis-footer {
    position: relative;
    min-height: 266px;
}
#links-uteis-footer .container {
    position: relative;
}
#links-uteis-footer .box {
    padding: 0 56px 56px 56px;
    border-radius: 12px;
    background: var(--Blue02-02);
    min-height: 150px;
    width: 100%;
    position: absolute;
    top: -140px;
}
#links-uteis-footer .box-link {
    /* width: 25%; */
    padding-top: 56px;
}
#links-uteis-footer h6 {
    color: var(--Blue03-01);
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin-bottom: 16px;
}
#links-uteis-footer .area-restrita {
    color: var(--Neutras-White);
    /* Button/Button Small */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 32px;
    border: 2px solid var(--Blue03-01);
    width: 168px !important;
    padding: 8px;
    margin-top: 101px;
}
#links-uteis-footer .area-restrita svg {
    margin-right: 4px;
}
#links-uteis-footer .box-link a {
    color: var(--Neutras-White);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    margin-bottom: 4px;
}

#information-footer {
    margin-top: 56px;
    margin-bottom: 70px;
}
#information-footer .box-social a {
    color: var(--Neutras-Black);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}
#information-footer .box-social a svg {
    margin-right: 4px;
    min-width: 33px;
}
#information-footer address {
    color: var(--Neutras-Black);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#address-footer h7,
#fone-footer h7 {
    color: var(--Blue01-Blue01);
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 100%;
}
#information-footer .bol {
    margin-right: 10px;
    margin-top: 4px;
}
#information-footer .bol svg {
    border-radius: 40px;
    background: var(--Blue03-01);
}
#fone-footer .fone {
    color: var(--Blue03-01);
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
}

#selo-footer .container {
    border-top: 1px solid var(--Blue01-Blue01);
    padding: 81px 0;
}
#develop {
    background-color: var(--Blue02-02);
    position: relative;
    padding: 16px 0;
}
#develop .back-top {
    position: absolute;
    top: -33px;
    max-width: 234px;
}

#develop .back-top a {
    position: absolute;
    top: 9px;
    font-family: var(--font);
    color: var(--Blue03-01);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#develop .back-top a svg {
    margin-left: 10px;
}
#develop .text {
    color: var(--Blue03-01);
    font-weight: 500;
}
#develop .empresa-dev {
    margin-top: 4px;
}
#develop .empresa-dev a {
    color: var(--Blue03-01);
    font-weight: 700;
}

/**
 * page recursos
 */
#page-recursos .text-destaque {
    margin-bottom: 52px;
}

/**
 * pagina contato
 */
#page-contato .container-fones .item > div {
    border-radius: 12px;
    background: var(--Neutras-Grey03, #f7f7f7);
    padding: 16px;
}

#page-contato .container-fones .item .bol {
    margin-right: 14px;
    width: 30px;
    height: 30px;
    background: var(--Blue03-01);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-contato .container-fones .item .bol svg,
#page-contato .container-fones .item .bol img {
    width: 27px;
    height: 27px;
}
#page-contato .container-fones .item a {
    color: var(--Blue03-01, #08a9cb);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 175% */
}
#page-contato .container-fones .item .email {
    font-weight: 500;
}
#page-contato .container-maps {
    margin-top: 145px;
}
#page-contato .container-maps .title-content {
    margin-bottom: 45px;
}
#page-contato .container-maps iframe {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--Neutras-Grey02, #c0c0c0) !important;
}
/**
 * page Faq
 */
#page-faq {
    min-height: 300px;
}
#page-faq .container-filter > div {
    width: 300px;
}
#page-faq .container-filter .btn-icn {
    background: var(--Neutras-Grey03, #f7f7f7) url("../img/icn_find.svg")
        no-repeat center;
    width: 35px;
    height: 43px;
    border: none;
    border-radius: 0px 8px 8px 0;
    margin-top: 10px;
}
#page-faq .pergunta {
    border-bottom: 1px solid var(--Neutras-Grey01, #dfdfdf);
    padding: 24px;
    transition: all 0.9s linear;
}
#page-faq .pergunta h6 {
    color: var(--Blue03-01, #08a9cb);
    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
    cursor: pointer;
    transition: all 0.2s;
}
#page-faq .pergunta.active h6 {
    color: var(--Blue02-01, #0672b9);
}
#page-faq .pergunta .icon {
    content: url("../img/icn_open_faq.svg");
    width: 16px;
    height: 17px;
    display: flex;
    margin-right: 16px;
}
#page-faq .pergunta.active .icon {
    content: url("../img/icn_close_faq.svg");
}
#page-faq .resposta {
    color: var(--Neutras-Black, #7e7e7e);
    transition: all 0.9s linear;
    margin-top: 25px;
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-left: 2px solid #0672b9;
    padding-left: 20px;
    margin-left: 72px;
}
#page-faq .hide-resposta {
    overflow: hidden;
    height: 0 !important;
    margin-top: 0;
}
#page-faq .cta {
    border-radius: 12px;
    background: var(--Neutras-Grey03, #f7f7f7);
    padding: 0 32px 32px 32px;
    margin-top: 40px;
}
#page-faq .cta > div {
    margin-top: 32px;
}
#page-faq .cta h5 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 100% */
}
#page-faq .cta h7 {
    margin-top: 20px;
    color: var(--Blue01-Blue01, #0672b9);
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}

#page-faq .btn-azul {
    display: flex;
    justify-content: space-between;
    width: 300px;
}
/**
 * Trabalhe conosco
 */
#page-trabalhe-conosco .frm {
    margin-top: 45px;
}
/**
 * Selo e parceiro
 */
#page-selo-parceiro .container-selo {
    margin-bottom: 130px;
}
#page-selo-parceiro .container-parceiro {
    margin-bottom: 130px;
}
#page-selo-parceiro .item {
    margin-top: 76px;
}
#page-selo-parceiro .container-img {
    min-width: 200px;
    display: flex;
    justify-content: center;
}
#page-selo-parceiro .container-descricao {
    padding-left: 24px;
}
#page-selo-parceiro .item h5 {
    color: var(--Blue01-Blue01, #0672b9);
    margin-bottom: 0;
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#page-selo-parceiro .item .descricao {
    margin-top: 16px;
    color: var(--Neutras-Black, #7e7e7e);

    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}
/**
 * QUem Somos
 */
#page-quem-somos .container-img {
    margin-top: 120px;
}

#page-quem-somos .container-mvv {
    margin-top: 80px;
    transition: all 0.2s ease;
}
#page-quem-somos .container-mvv > div {
    max-width: 440px;
}
#page-quem-somos .container-btn {
    border-radius: 40px;
    background: var(--Blue01-Blue03, #e7f1f8);
    padding: 12px 16px;
    min-height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#page-quem-somos .container-btn .btn-mvv {
    padding: 12px 16px;
    color: var(--Blue03-01, #08a9cb);
    min-height: 47px;

    text-align: center;
    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
    min-width: 200px;
}
#page-quem-somos .container-btn .btn-mvv:hover,
#page-quem-somos .container-btn .btn-mvv.active {
    border-radius: 32px;

    background: var(--Blue02-02, #0b325d);
}
#page-quem-somos .container-result-btn {
    margin-top: 50px;
}
#page-quem-somos .container-result-btn > div {
    transition: all 0.2s ease;
}
#page-quem-somos .container-result-btn .hide-item {
    height: 0;
    overflow: hidden;
}
#page-quem-somos .container-result-btn h4 {
    color: var(--Blue01-Blue01, #0672b9);
    text-align: center;

    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}
#page-quem-somos .container-result-btn .text {
    color: var(--Neutras-Black, #7e7e7e);
    margin-top: 40px;
    width: 100%;
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px;
}
#nosso-negocio {
    margin-top: 200px;
    background: var(
        --Gradients-Gradient01,
        linear-gradient(180deg, #fff 0%, #e7f1f8 100%)
    );
    padding-bottom: 120px;
}
#nosso-negocio h4 {
    color: var(--Blue03-03, #39bad5);
    text-align: center;

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#nosso-negocio .text-embreve {
    color: var(--Blue03-03, #0672b9);
    text-align: center;

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#nosso-negocio h5 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}
#nosso-negocio h5::before {
    content: url("../img/arrow_det_title.svg");
    rotate: 180deg;
    display: inline-flex;
    margin-right: 16px;
}
#nosso-negocio h5::after {
    margin-left: 16px;
    content: url("../img/arrow_det_title.svg");
}
#nosso-negocio .lista-negocios .container-icn {
    display: flex;
    align-items: center;
    justify-content: center;
}
#nosso-negocio .lista-negocios .item {
    border-radius: 8px;
    border: 1px solid var(--Neutras-Grey01, #dfdfdf);
    background: var(--Neutras-White, #fff);
    margin-top: 56px;
    padding: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#nosso-negocio .lista-negocios .item h6 {
    color: var(--Blue01-Blue01, #0672b9);
    text-align: center;
    width: 100%;
    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
}
#nossos-principios {
    background: var(--Blue03-01, #08a9cb);
    padding-bottom: 115px;
}
#nossos-principios .container-title {
    margin-top: 120px;
}
#nossos-principios .container-title h5 {
    color: var(--Blue01-Blue03, #e7f1f8);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
#nossos-principios .container-title h5::before {
    content: url("../img/icn_arrow_azul_dark_right.svg");
    margin-right: 16px;
}
#nossos-principios .container-title h6 {
    color: var(--Blue02-02, #0b325d);

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#nossos-principios .container-lista {
    margin-top: 120px;
}
#nossos-principios .container-lista > div {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}
#nossos-principios .container-lista .item {
    margin-bottom: 16px;
    border-radius: 24px;
    background: var(--Neutras-White, #fff);
    color: var(--Blue01-Blue01, #0672b9);
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    padding: 8px 12px;
}
#nossos-principios .container-lista .item::before {
    content: url("../img/icn_arrow_right.svg");
    margin-right: 12px;
}
#nossos-valores {
    background: var(--Neutras-Grey03, #f7f7f7);
    padding-bottom: 115px;
}
#nossos-valores .container-title {
    margin-top: 120px;
}
#nossos-valores .container-title h5 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
#nossos-valores .container-title h5::before {
    content: url("../img/icn_arrow_azul_dark_right.svg");
    margin-right: 16px;
}
#nossos-valores .container-title h6 {
    color: var(--Blue03-01, #08a9cb);

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#nossos-valores .container-lista {
    margin-top: 120px;
}
#nossos-valores .container-lista > div {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}
#nossos-valores .container-lista .item {
    margin-bottom: 16px;
    border-radius: 24px;
    background: var(--Blue02-02, #0b325d);
    color: var(--Neutras-White, #fff);
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    padding: 8px 20px;
}
#nossos-valores .container-lista .item::before {
    content: url("../img/icn_arrow_right.svg");
    margin-right: 12px;
}
#nossa-politica h5 {
    color: var(--Blue03-01, #08a9cb);
    margin-bottom: 8px;
    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#nossa-politica {
    padding-top: 120px;
}
#nossa-politica h5 {
    margin-bottom: 48px;
}
#nossa-politica .text {
    margin-bottom: 31px;
}
#nossa-politica .container-lista .item {
    border-radius: 72px;
    border: 1px solid var(--Blue01-Blue03, #e7f1f8);
    color: var(--Blue01-Blue01, #0672b9);
    text-align: center;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    margin-bottom: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#nossa-politica .container-lista .item::after {
    content: url("../img/arrow_det_title.svg");
    margin-left: 68px;
}
#nossa-politica .container-lista .item::before {
    content: url("../img/arrow_det_title.svg");
    display: inline-flex;
    rotate: 180deg;
    margin-right: 68px;
}
/**
 *Home
 */
#page-home {
    /* min-height: 1500px; */
    padding-top: 400px;
}

#banner .owl-nav {
    height: 100px;
    position: absolute;
    z-index: 9999999;
    top: 50vh;
    left: 0;
    width: 100%;
}
#banner .owl-nav .owl-prev{
    background-image: url("../img/btn_banner_prev.png");
    background-position: center center;
    background-repeat: no-repeat;
    width: 52px;
    height: 148px;
}
#banner .owl-nav .owl-next{
    background-image: url("../img/btn_banner_next.png");
    background-position: center center;
    background-repeat: no-repeat;
    width: 52px;
    height: 148px;
    position: absolute;
    right: 0;
}
/* #owl-banner  .item{
    background-image: var(--bg-img);
    background-position: center center;
    background-size: cover;
    } */
#owl-banner img {
    /* filter: opacity(80%) */
}
#owl-banner img.mobile {
    display: none;
}
#owl-banner img.desktop {
}
#owl-banner .container-text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    align-items: center;
    /* top: 0; */
    /* left: 0; */
    /* background-image:linear-gradient(180deg, #FFF 0%, #E7F1F8 100%); */
}
#owl-banner .container-text h5 {
    color: #fff;
    font-family: var(--font);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
}

#owl-banner .container-text h7 {
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
#owl-banner .container-text h5,
#owl-banner .container-text h7 {
    max-width: 390px;
    display: flex;
}
#simulador-banner {
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(231, 241, 248, 0.8) 100%
    );
    backdrop-filter: blur(7px);
    padding: 24px;
    position: absolute;
    top: 200px;
    /* right: calc(100vw - 95%); */
    z-index: 1;
    max-width: 480px;
    --ftz-title: 28px;
    --ftz-big: 44px;
    --ftz-small: 16px;
}
#simulador-banner .container-tipo-grupo {
    border-radius: 32px;
    background: #fff;
    padding: 8px;
    margin-bottom: 32px;
}
#simulador-banner .container-tipo-grupo button {
    padding: 12px 11px;
    color: var(--Blue03-01, #08a9cb);
    background-color: transparent;
    /* Button/Button */
    font-family: "General Sans";
    font-size: var(--ftz-small);
    font-style: normal;
    font-weight: 700;
    border: none;
    outline: none;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
#simulador-banner .container-tipo-grupo button.active {
    background: var(--Blue02-02, #0b325d);
    padding: 12px 15px;
}
#simulador-banner .container-title h4 {
    color: var(--Blue01-Blue01, #0672b9);
    /* Headline/H4 */
    font-family: var(--font);
    font-size: var(--ftz-title);
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}
#simulador-banner label {
    color: var(--Blue02-01, #0672b9);

    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: var(--ftz-small);
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
}
.form-range {
    --height-track: 1px;
    --color-track: #f7f7f7;
    --color-thumb: var(--Blue01-Blue01);
}
.form-range::-moz-range-thumb,
.form-range::-webkit-range-thumb {
    background: var(--color-thumb) !important;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.form-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -7px;
}
.form-range::-moz-range-track,
.form-range::-webkit-range-track {
    height: var(--height-track);
    background-color: var(--color-track);
}
#simulador-banner .container-escolha-vlr {
    margin-bottom: 25px;
}
#simulador-banner .container-escolha-qtd-parc {
    margin-bottom: 31px;
}
#simulador-banner .container-result .big {
    color: var(--Blue03-01, #08a9cb);
    font-family: var(--font);
    font-size: var(--ftz-big);
    font-style: normal;
    font-weight: 700;
}
#simulador-banner .container-result .small {
    color: var(--Blue03-01, #08a9cb);

    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: var(--ftz-small);
    font-style: normal;
    font-weight: 600;
}
#simulador-banner .container-result .small:last-child {
    padding-left: 10px;
}
#simulador-banner .container-result .small:first-child {
    padding-right: 10px;
}
#vantagens {
    background: var(--Blue01-Blue03, #e7f1f8);
    padding-bottom: 74px;
    padding-top: 134px;
}
#vantagens h6 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}
#vantagens h6::before {
    content: url("../img/arrow_det_title.svg");
    rotate: 180deg;
    display: inline-flex;
    margin-right: 16px;
}
#vantagens h6::after {
    margin-left: 16px;
    content: url("../img/arrow_det_title.svg");
}
#vantagens h7 {
    color: var(--Blue03-01, #08a9cb);
    text-align: center;
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
    margin-bottom: 92px;
}

/* #vantagens .container-lista{
    --bs-gutter-x:1.90rem
} */
#vantagens .item {
    padding-left: 12px;
    padding-right: 12px;
}
#vantagens .item .container-info {
    margin-top: 28px;
    min-height: 260px;
    border-radius: 12px;
    background: var(--Neutras-White, #fff);
    padding: 24px;
}
#vantagens .item .container-info h4 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#vantagens .item .container-info .text {
    color: var(--Neutras-Black, #7e7e7e);

    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    margin-bottom: 12px;
}

#passo-a-passo {
    background: var(--Blue01-Blue03, #e7f1f8);
    padding-top: 80px;
    padding-bottom: 84px;
}
#passo-a-passo h6 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}
#passo-a-passo h6::before {
    content: url("../img/arrow_det_title.svg");
    rotate: 180deg;
    display: inline-flex;
    margin-right: 16px;
}
#passo-a-passo h6::after {
    margin-left: 16px;
    content: url("../img/arrow_det_title.svg");
}
#passo-a-passo h7 {
    color: var(--Blue03-01, #08a9cb);
    text-align: center;
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
    margin-bottom: 92px;
}

#passo-a-passo .linha-vertical {
    height: 76px;
    background-color: #fff;
    width: 2px;
    position: absolute;
    display: inline-flex;
    left: 30px;
    top: 56px;
}
#passo-a-passo .item:last-child .linha-vertical {
    display: none;
}
#passo-a-passo .bol {
    border-radius: 40px;
    background: var(--Neutras-White, #fff);
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 18px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}
#passo-a-passo .bol:hover {
    color: var(--Neutras-White, #fff);
    background: var(
        --Gradients-Gradient02,
        linear-gradient(90deg, #08a9cb 0%, #0672b9 100%)
    );
}
#passo-a-passo .container-info {
    margin-left: 29px;
}

#passo-a-passo .item {
    margin-top: 36px;
    margin-bottom: 72px;
}
#passo-a-passo .container-info .icon {
    margin-right: 24px;
}
#passo-a-passo .container-info {
}
#passo-a-passo .container-info h4 {
    color: var(--Blue01-Blue01, #0672b9);
    /* Headline/H5 */
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#passo-a-passo .container-info .text {
    color: var(--Neutras-Black, #7e7e7e);
    /* Body/Body Large */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}

#nosso-negocio h7 {
    color: var(--Blue03-03, #39bad5);
    text-align: center;

    /* Headline/H3 */
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#element-scroll{
    position: sticky;
    top:160px;
}
#home-planos {
    /* min-height: 1400px; */
    min-height: 500px;
    background-image: url("../img/bg_planos_home.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--Blue02-02, #0b325d);
    /* padding-bottom: 120px; */
    padding-bottom: 80px;
}
#home-planos .container-content {
    margin-top: 120px;
}
#home-planos h7 {
    color: var(--Blue01-Blue03, #e7f1f8);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
#home-planos h7::before {
    content: url("../img/arrow_det_title.svg");
    display: inline-flex;
    rotate: 180deg;
    margin-right: 16px;
}
#home-planos h6 {
    color: var(--Blue03-03, #39bad5);
    font-family: var(--font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    margin-top: 8px;
}

#home-planos .text {
    color: var(--Blue01-Blue03, #e7f1f8);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
    margin-top: 20px;
}
#home-planos .container-planos .item {
    border-radius: 12px;
    border: 1px solid var(--Blue01-Blue03, #e7f1f8);
    background: var(--Neutras-White, #fff);
    padding: 12px;
    margin-bottom: 24px;
    position: sticky;
    top:160px;
    min-height:285px;
}
#home-planos .container-planos .item .container-info {
    padding-left: 24px;
}
#home-planos .container-planos .item .container-info h4 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
#home-planos .container-planos .item .container-info .text {
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 140% */
}
#home-planos .container-planos .item .container-info .container-vlr {
    margin-top: 20px;
}
#home-planos
    .container-planos
    .item
    .container-info
    .container-vlr
    .descr-parc {
    color: var(--Neutras-Black, #7e7e7e);

    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#home-planos .container-planos .item .container-info .container-vlr .vlr {
    color: var(--Blue03-01, #08a9cb);

    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
#home-planos .container-planos .item .container-info .container-vlr .vlr .big {
    font-size: 32px;
}
#home-planos .container-planos .item .btn-gradient {
    margin-top: 20px;
}
.btn-gradient {
    border-radius: 32px;
    color: var(--Neutras-White, #fff);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 8px 24px;
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    /* transition: 300ms all ease-in-out; */
    position: relative;
    /* overflow: hidden; */
    background: linear-gradient(90deg, #08a9cb 0%, #0672b9 100%);
}

.btn-gradient:before {
    transition: opacity 0.2s ease-in-out;
    background: linear-gradient(270deg, #08a9cb 0%, #0672b9 100%);
    display: block;
    content: "";
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 32px;
}
.btn-gradient:hover:before {
    opacity: 1;
}
.btn-gradient:hover,
.btn-gradient:active,
.btn-gradient:visited {
    /* animation:300ms gradient ease-in-out ; */
    color: var(--Neutras-White, #fff) !important;
    /* background: linear-gradient(270deg, #08a9cb 0%, #0672b9 100%); */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        /* background-position: 0% 50%; */
        background-position: 100% -100%;
    }
}
.btn-gradient.icon::after {
    content: url("../img/icn_seta_btn_white.svg");
    transition: all 0.2s ease;
    display: inline-flex;
}
.btn-gradient.icon:hover::after {
    rotate: -45deg;
}
.btn-exclamation {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icn_exclamation_circle.svg") center center no-repeat;
    margin-left: 11px;
}
.btn-duvida {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icn_duvida_circle.svg") center center no-repeat;
    margin-left: 11px;
}
.tooltip-information {
    --bs-tooltip-bg: var(--Blue03-01);
    --bs-tooltip-color: var(--bs-white);
}
.popover-information {
    --bs-popover-max-width: 200px;
    --bs-popover-border-color: var(--Blue03-01);
    --bs-popover-header-bg: var(--Blue03-01);
    --bs-popover-header-color: var(--bs-white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 0.5rem;
}
/**
 *
 */
#home-sobre {
    padding-top: 120px;
}
#home-sobre h5 {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 50px;
}
#home-sobre h5 span {
    color: var(--Blue03-01, #08a9cb);
}
#home-sobre .btn {
    color: var(--Blue01-Blue01, #0672b9);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 32px;
    border: 2px solid var(--Gradients-Gradient02, #08a9cb);
    margin-bottom: 50px;
    min-height: 56px;
    display: flex;
    align-items: center;
    width: 300px;
    padding: 17px 20px;
}
#home-sobre .btn::after {
    content: url("../img/icn_seta_btn.svg");
    height: 19px;
    margin-left: 20px;
}
#home-sobre .container-lista .item {
    padding: 20px 52px;
    border-radius: 8px;
    border: 1px solid var(--Neutras-Grey01, #dfdfdf);
    background: var(--Neutras-White, #fff);
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 137px;
}
#home-sobre .container-lista .item.big {
    min-height: 300px;
}
#home-sobre .container-lista .item > div:last-child {
    padding-left: 32px;
}
#home-sobre .container-lista .item .text-normal {
    color: var(--Blue01-Blue01, #0672b9);

    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 140% */
}
#home-sobre .container-lista .item .text-big {
    color: var(--Blue03-01, #08a9cb);
    width: 100%;
    /* Headline/H1 */
    font-family: var(--font);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 109.091% */
}

/**
 * Planos finalizados
 */
#modal-filtrar-plano .modal-footer {
    padding-top: 23px !important;
}
#form-filtro-planos .title-separador:first-child {
    margin-top: 0 !important;
}
#form-filtro-planos .title-separador {
    margin-top: 33px;
    margin-bottom: 0;
}
#form-filtro-planos.frm > div {
    margin-top: 0;
}
#page-grupos-finalizados .container-organizado {
    margin: 0;
}
#page-grupos-finalizados .container-organizado select {
    margin: 0;
    width: auto;
    min-width: 200px;
}

#modal-detalhe-plano .modal-dialog {
    --bs-modal-width: calc(100vw - 30%);
}
#modal-detalhe-plano .modal-body {
    padding: 24px;
}
#modal-detalhe-plano .descricao-grupo {
    color: var(--Neutras-Black, #7e7e7e);
    /* Body/Body */
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.modal-descricao-plano {
    margin-top: 20px;
}
.modal-descricao-plano .item {
    margin-bottom: 15px;
    border-radius: 8px;
    background: var(--Neutras-Grey03, #f7f7f7);
    padding: 10px 12px;
    color: var(--Neutras-Black, #7e7e7e);
    font-family: var(--font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    /* line-height:1.25px */
}
.modal-descricao-plano .container-vlr-parcela {
    background: var(--Blue02-02, #0b325d);
}
.modal-descricao-plano .content-descr .title-descr{
    margin: 0;
}
.modal-descricao-plano .content-descr {
    padding-left: 12px;
}
.modal-descricao-plano .content-descr .valores {
    /* line-height: -10px; */
    position: relative;
}

.modal-descricao-plano .container-vlr-parcela .title-descr {
    color: var(--Neutras-White, #fff);
}
.modal-descricao-plano .big {
    color: var(--Blue03-01, #08a9cb);
    font-family: var(--font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.modal-descricao-plano .small {
    color: var(--Blue03-01, #08a9cb);

    /* Subtitle/Subtitle */
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}
.modal-descricao-plano .btn-gradient > span svg {
    margin-right: 16px;
}
/* .modal-descricao-plano  .small:last-child {
    padding-left: 10px;
}
.modal-descricao-plano .small:first-child {
    padding-right: 10px;
} */

@media (min-width: 1200px) {
    #fone-footer{
        max-width: 265px;
    }
}
@media (max-width: 1024px) {
    /* #modal-detalhe-plano .container-img-grupo {
        display: none;
    } */
    #information-footer .box-social a {
        width: 100%;
    }
    #footer .box-social {
        width: 100%;
        justify-content: start;
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    #address-footer {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    #fone-footer,
    #address-footer {
        width: 100%;
    }
    #links-uteis-footer .box {
        width: 100%;
    }
    #selo-footer a {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
}
@media (max-width: 1300px) {
    #simulador-banner {
        --ftz-title: 24px;
        --ftz-big: 36px;
        --ftz-small: 14px;
        /** */
        max-width: 345px;
    }
    #simulador-banner .container-tipo-grupo button {
        padding: 12px 5px;
    }
    #simulador-banner .container-tipo-grupo button.active {
        padding: 12px;
    }
}
@media (max-width: 1200px) {
    #modal-detalhe-plano .modal-dialog {
        --bs-modal-width: calc(100vw - 10%);
    }
    #owl-banner .container-text {
        align-items: start;
        padding-top: 160px;
    }
}
/* @media (max-width: 1024px) {
    .container, .container-md, .container-sm {
        max-width: 90% !important;
    }
} */
@media (max-width: 980px) {
    #home-sobre .container-lista .item .text-big{
        font-size: 40px;
    }
    #information-footer{
        margin-top: 300px;
    }
    #selo-footer a {
        width: 33.33%;
    }
    #links-uteis-footer .box-link {
        width: 50%;
    }
    #page-selo-parceiro .container-parceiro .container-img,
    #page-selo-parceiro .container-parceiro .container-descricao,
    #page-selo-pariro .container-selo .container-img,
    #page-selo-parceiro .container-selo .container-descricao {
        width: auto;
    }
    #page-selo-parceiro .item {
        flex-wrap: nowrap;
    }
    #home-planos .container-planos .item {
        min-height:430px;
    }
}
@media (max-width: 680px) {
    #home-planos .container-planos .item {
        min-height:580px;
    }
    #owl-banner img.mobile {
        display: block;
    }
    #owl-banner img.desktop {
        display: none;
    }
    #simulador-banner {
        --ftz-title: 24px;
        --ftz-big: 36px;
        --ftz-small: 14px;
        /** */
        max-width: 400px;
    }
    #btn-whatsapp {
        width: 70px;
        padding:0;
    }
    #btn-whatsapp > div{
        display: none !important;
    }
    #links-uteis-footer .box-link {
        width: 100%;
    }
    #selo-footer a {
        width: 50%;
    }
    #links-uteis-footer .box {
        width: 95.5%;
    }
    #page-selo-parceiro .item {
        flex-wrap: wrap;
    }
    #page-selo-parceiro .container-parceiro .container-img,
    #page-selo-parceiro .container-parceiro .container-descricao,
    #page-selo-pariro .container-selo .container-img,
    #page-selo-parceiro .container-selo .container-descricao {
        width: 100%;
    }
    #page-selo-parceiro .container-parceiro .container-img,
    #page-selo-parceiro .container-selo .container-img {
        margin-bottom: 16px;
        padding-left: 24px;
    }
}
