/* ============== RESET CSS ============== */
/*
 http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============== FIM RESET CSS ============== */

:root {
  --NEUTRO-BG-COLOR: #DFDFE8;
  --LIGHT-GRAY: #c6ccdd;
  --BG-LIGHT-GRAY: rgba(255, 255, 255, 0.6);
  --WHITE-BG-COLOR: #fff;
  --BLACK-BG-COLOR: #000;
  /* --LIGHT-GREEN: #30ffba; */
  --DARK-BLUE: #254399;
  --NAVY1: rgba(0, 37, 110, 0.96);
  --NAVY2: rgba(0, 37, 110, 0.26);

  --HOVER-BTN1: rgba(37, 99, 192, 0.32);

  --TEXT-MENU-ITEM: #798cb2;

  --LIGHT-BLUE: #1c8dff;

  --spacing-space-01: 0.25rem;
  --spacing-space-02: 0.50rem;
  --spacing-space-03: 0.75rem;
  --spacing-space-04: 1rem;
  --spacing-space-05: 1.5rem;
  --spacing-space-06: 2rem;
}

body {
  background-color: #DFDFE8;
}

.display-none {
  display: none !important;
}

.main-container {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */

  width: 100%;
  height: 100vh;

  background: var(--NEUTRO-BG-COLOR);
}

.body-container {
  display: flex;
}

/* Barra de botões azul superior */

.top-bar {
  display: flex;
  height: 30px;
  width: 100%;
  /* max-width: 90rem; */
  padding: var(--spacing-spacing-02, 0.5rem);
  justify-content: center;
  align-items: center;

  border-radius: 0rem 0rem var(--spacing-spacing-00, 0rem)
    var(--spacing-spacing-00, 0rem);
  border-right: 1px solid var(--NAVY2);
  border-bottom: 1px solid var(--NAVY2);
  border-left: 1px solid var(--NAVY2);
  background: var(--NAVY1);

  z-index: 1016;
  top: 0;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 90rem;
}

.top-bar-btns {
  display: flex;
}

.top-bar-btns .btn {
  color: var(--WHITE-BG-COLOR);
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  display: flex;
  padding: var(--spacing-spacing-02, 0.5rem) var(--spacing-spacing-03, 0.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-spacing-01, 0.25rem);

  border-radius: var(--spacing-spacing-02, 0.5rem);
}

.top-bar-btns .btn:hover {
  color: var(--WHITE-BG-COLOR);
  background: var(--HOVER-BTN1);
}

.top-bar-btns .btn:active {
  color: var(--LIGHT-GRAY);
}
/*Fim barra de botões azul superior*/

/* Botões redes sociais*/
.btn-feedback {
  min-width: 2rem;
  padding: var(--spacing-04, 0.5rem);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-02, 0.25rem);
    display: none;
  transition: all ease-in-out .3s;
    background: var(--Colors-Primary-50, #0073E5);

  cursor: pointer;
}

.btn-feedback.active {
  display: flex;
}

.btn-feedback:hover {
  background: #0158ae;
}

.btn-feedback svg {
  width: 1rem;
  height: 1rem;
}

.btn-feedback span {
  color: var(--White, #FFF);
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.top-bar-socials {
  display: flex;
  /* width: 10.25rem; */
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--spacing-spacing-03, 0.75rem);
  flex-shrink: 0;
}

.footer-bar-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-space-02, 0.5rem);
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.625rem;
  width: 2rem;
  height: 2rem;

  transition: all ease-in-out 0.2s;

  border-radius: var(--spacing-space-02, 0.5rem);
  background: #092e74;
}

.btn-social svg {
  width: 15px;
  height: 15px;
}

.btn-social:hover {
  border-radius: var(--spacing-space-02, 0.5rem);
  background: var(--HOVER-BTN1);
}

.btn-social-footer {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  justify-content: center;
  align-items: center;

  border-radius: 1.4375rem;

  transition: all ease-in-out 0.3s;
}

.btn-social-footer:hover {
  background: rgba(28, 141, 255, 0.12);
}


/* Fim botões rede sociais*/

/* Menu Lateral */

.menu-sidebar {
  display: flex;
  width: 100%;
  max-width: 14.375rem;
  /* width: 15.1%; */
  /* width: 18.375rem; */
  /* height: 57.6875rem; */
  height: fit-content;
  padding: 0 0.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;

  margin-right: 0.5rem;

  position: sticky;
  top: 3.5rem;

  z-index: 1005;

  animation: fadeOut 0.5s ease-in-out 0.3s forwards; /* Aplica a animação com atraso e mantém o estado final */
  transition: all ease-in-out 0.3s;
}

.menu-sidebar.active {
  display: flex;
  opacity: 0; /* Inicialmente, define a opacidade para 0 */
  animation: fadeIn 0.5s ease-in-out 0.3s forwards; /* Aplica a animação com atraso e mantém o estado final */
  position: fixed;
  top: 0;
  left: 0;
  background: #f0f3f9;
  z-index: 1016;
  height: 100%;
  max-width: 14.375rem;
  width: 100%;

  transition: all ease-in-out 0.1s;
}

/* Centralizando icone no iframe */
.centralizado {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* Começa com opacidade 0 */
  }
  100% {
    opacity: 1; /* Termina com opacidade 1 */
  }
}

.menu-sidebar.closed {
  max-width: 3.5rem;
}

a.menu-item {
  text-decoration: none;
}

.menu-item {
  display: flex;
  padding: var(--spacing-spacing-02, 0.5rem);
  align-items: center;
  gap: 0.7rem;
  align-self: stretch;

  border-radius: var(--spacing-spacing-05, 1.5rem);
  background: rgba(0, 37, 110, 0);

  color: #03045e;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  transition: all ease-in-out 0.3s;
}

.menu-item.active {
  color: var(--LIGHT-BLUE);
  background: rgba(37, 99, 192, 0.06);
  cursor: pointer;
}

.menu-item:hover {
  color: var(--LIGHT-BLUE);
  background: rgba(37, 99, 192, 0.06);
  cursor: pointer;
}

.menu-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.menu-item-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.menu-item-text {
  width: 10.125rem;
}

.menu-item-text.closed,
.menu-item-arrow.closed {
  display: none;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-spacing-01, 0.25rem);
  align-self: stretch;

  padding: 0.313rem;

  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 8px 0px rgba(37, 99, 192, 0.16);
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-submenu.dropdown-sidebar-card,
.dropdown-menu.dropdown-menu-card-slider.dropdown-submenu.dropdown-sidebar {
  width: 266px;
  max-height: 63vh;

  z-index: 1016;

  padding-left: 13px;

  color: #5a637d;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  scroll-behavior: smooth;
  overflow-y: scroll;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu2.documents-submenu {
  width: max-content;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu2.solution-submenu {
  width: max-content;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu2.tools-submenu {
  width: max-content;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-submenu.dropdown-sidebar.scroll-visible {
  overflow: visible;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu3.menu-flag {
  width: auto;
}

.dropdown-menu {
  min-width: 11.25rem;
}

.dropdown-submenu {
  z-index: 1020;
}

.dropdown-submenu2 {
  z-index: 1021;
}

.dropdown-submenu3 {
  z-index: 1022;
}

.dropdown-submenu4 {
    z-index: 1022;
}

.menu-flag li {
  display: flex;
  align-items: center;
}

.menu-flag li a {
  width: 11.625rem;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu2.menu-flag2 {
  width: auto;
  height: 50vh;
  overflow-y: scroll;
}

.dropdown-menu.dropdown-menu-card-slider.dropdown-sidebar.dropdown-submenu4.menu-flag2 {
    width: auto;
    height: 50vh;
    overflow-y: scroll;
}

.submenu-flag img {
  display: flex;
  width: 1.75rem;
  height: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  border-radius: var(--spacing-space-01, 0.25rem);
  /* border: 1px solid rgba(0, 0, 0, 0.12); */
}

.submenu-flag {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  border: none !important;
}

.dropdown-card-item.link-alvo.solution-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.solution-item div {
  width: 1.5rem;
  height: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--spacing-space-02, 0.5rem);
  background: #f0f3f9;
}
.solution-item div img {
  width: 1.5rem;
  height: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--spacing-space-02, 0.5rem);
  background: #f0f3f9;
}

/* Fim menu lateral */

/* Conteudo */
.content-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Cabeçalho  */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 3.5rem;
  width: 100%;
  max-width: 90rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-02, 0.5rem);
  background: rgba(223, 223, 232, 0.8);
  top: -1px;
  position: sticky;
  backdrop-filter: blur(21.908418655395508px);
  z-index: 1015;
}

.header-left {
  display: flex;
  width: 50%;
  gap: 0.5rem;
}

.header-separator {
  height: 0.0625rem;
  width: 100%;

  background: rgba(0, 37, 110, 0.12);

  top: 3.5rem;
  position: sticky;
  z-index: 1014;
}
/* Fim cabeçalho*/

.header-logo-container {
  width: 100%;
  max-width: 13.85rem;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 0.25rem;
}

.header-logo-container.mobile {
  display: none;
}

.btn-header-logo {
  padding: 10px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}

.btn-header-logo:hover {
  color: var(--LIGHT-BLUE);
  background: rgba(37, 99, 192, 0.06);
  cursor: pointer;
}

/* Logo  */
.logo {
  display: flex;
  /* width: 100%; */
  max-width: 15.4375rem;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);
  flex-shrink: 0;
}

.logo svg {
  width: 7.61531rem;
  height: 1.875rem;
  flex-shrink: 0;
}

/* Fim Logo*/

/* Pesquisa */
.menu-hamburguer {
  display: none;
  width: 40px;
  height: 40px;
  padding: var(--spacing-space-02, 0.5rem);
  align-items: center;
  gap: 1rem;
  align-self: stretch;

  border-radius: var(--spacing-space-05, 1.5rem);
  background: rgba(0, 37, 110, 0);

  transition: all ease-in-out 0.3s;

  cursor: pointer;
}

.menu-hamburguer:hover {
  background: rgba(28, 141, 255, 0.12);
}

.menu-hamburguer svg {
  width: 1.25rem;
  height: 1.25rem;
}

.input-pesquisa-mobile {
  width: 40px;
  height: 40px;

  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-space-02, 0.5rem);
  gap: 1rem;
  align-self: stretch;

  border-radius: var(--spacing-space-05, 1.5rem);
  background: rgba(0, 37, 110, 0);

  transition: all ease-in-out 0.3s;

  cursor: pointer;
}

.input-pesquisa-mobile:hover {
  background: rgba(28, 141, 255, 0.12);
}

.input-pesquisa-mobile svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pesquisa.mobile {
  display: none;
  padding: 0 0.5rem;
  margin-bottom: 0.8rem;
}

.pesquisa {
  display: flex;
  width: 100%;
  min-width: 250px;
  align-items: center;
  justify-content: flex-start;
}

.input-pesquisa {
  max-width: 42.5rem;
  width: 100%;
}

.input-pesquisa .select-pesquisa {
  display: flex;
  /* max-width: 26.25rem; */
  height: 2.5rem;
  /* width: 9.6875rem; */
  padding: 0.25rem;

  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);
  /* flex: 1 0 0; */

  border-radius: 0.75rem;
  border-top: 1px solid #c6ccdd;
  border-left: 1px solid #c6ccdd;
  border-bottom: 1px solid #c6ccdd;
  border-right: none;

  background: rgba(255, 255, 255, 0.8);

  color: #58627c;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

button.btn-select-pesquisa.dropdown-toggle::after {
  color: #1c8dff;
}

button.btn-select-pesquisa {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.dropdown-menu,
.dropdown-menu-card-slider {
  z-index: 1015;
}

.dropdown-menu-pesquisa.show {
  width: 11rem;
  padding: var(--spacing-space-02, 0.5rem);
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-space-01, 0.25rem);

  border: none;

  border-radius: var(--spacing-space-03, 0.75rem);
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
}

.dropdown-menu-pesquisa.show a {
  display: flex;
  min-height: 2.25rem;
  padding: var(--spacing-space-01, 0.25rem) var(--spacing-space-02, 0.5rem);
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;

  border-radius: 0.5rem;

  color: #5a637d;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  transition: all ease-in-out 0.2s;
}

.dropdown-menu-pesquisa.show a.active {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

.dropdown-menu-pesquisa.show a:hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

.with-submenu:hover .dropdown-submenu {
  display: block;
}

.with-submenu2.active,
.with-submenu3.active {
  color: var(--LIGHT-BLUE) !important;
  background: rgba(28, 141, 255, 0.12);
  cursor: pointer;
}

a.dropdown-card-item {
  color: #00256e;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-decoration: none;
}

.input-pesquisa-texto {
  display: flex;
  max-width: 26.25rem;
  padding: 0rem var(--spacing-space-02, 0.5rem);
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-space-02, 0.5rem);
  flex: 1 0 0;

  padding-left: 1rem;

  border-radius: 0.5rem;
  border-top: 1px solid #c6ccdd;
  border-bottom: 1px solid #c6ccdd;

  border-right: none;
  border-left: none;

  font-family: "Nunito Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-pesquisa-texto::placeholder {
  background: rgba(255, 255, 255, 0.8);

  color: #a8b0c7;
  font-family: "Nunito Sans";
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.input-separator {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 5px 0;
  border: 1px solid #c6ccdd;
}

button.btn.btn-outline-primary.btn-pesquisa {
  /* padding: 0.75rem; */
  border-radius: 0.75rem;
  border-top: 1px solid #c6ccdd;
  border-right: 1px solid #c6ccdd;
  border-bottom: 1px solid #c6ccdd;

  border-left: none;
  background: rgba(255, 255, 255, 0.8);
}

button.btn.btn-outline-primary.btn-pesquisa:hover {
  border-top: 1px solid #c6ccdd;
  border-right: 1px solid #c6ccdd;
  border-bottom: 1px solid #c6ccdd;

  border-left: none;
  background: var(--NEUTRO-BG-COLOR);
}

button.btn.btn-outline-primary.btn-pesquisa:active {
  background: #c6ccdd;
}

/* Fim Pesquisa */

/* Botões no Cabeçalho a direita */
.login-buttons-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.login-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-buttons a {
  text-decoration: none;
}

.btn-minha-biblioteca {
  display: none;
  width: 10rem;
  height: 2.25rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-03, 0.75rem);

  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.btn-minha-biblioteca.active {
  display: flex;
}

.btn-minha-biblioteca:hover {
  border-radius: var(--spacing-space-03, 0.75rem);
  background: rgba(28, 141, 255, 0.12);
}

.btn-minha-biblioteca div:nth-child(1) {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-minha-biblioteca div:nth-child(2) {
  color: #03045e;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.btn-fale-conosco {
  display: none;
  width: 9rem;
  height: 2.25rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);
  margin: 0 20px;

  border-radius: var(--spacing-space-03, 0.75rem);

  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.btn-chat-eco {
  height: 2.25rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);


  border-radius: var(--spacing-space-03, 0.75rem);

  cursor: pointer;
  transition: all ease-in-out 0.3s;
  display: flex;
  /*color: #03045e;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;*/
}
.btn-chat-eco: div:nth-child(1) {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-chat-eco div:nth-child(2) {
  color: #03045e;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}




.btn-atendimento {
  display: none;
  height: 2.25rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);


  border-radius: var(--spacing-space-03, 0.75rem);

  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.btn-atendimento.active, .btn-fale-conosco.active {
  display: flex;
}

.btn-atendimento:hover, .btn-fale-conosco:hover {
  border-radius: var(--spacing-space-03, 0.75rem);
  background: rgba(28, 141, 255, 0.12);
}

.btn-atendimento div:nth-child(1), .btn-fale-conosco div:nth-child(1){
  width: 1.25rem;
  height: 1.25rem;
}

.btn-atendimento div:nth-child(2), .btn-fale-conosco div:nth-child(2){
  color: #03045e;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.btn-area-cliente {
  display: none;
  width: 10rem;
  height: 2.25rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);
  border-radius: var(--spacing-space-03, 0.75rem);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.btn-area-cliente.active {
  display: flex;
}

.btn-area-cliente:hover {
  border-radius: var(--spacing-space-03, 0.75rem);
  background: rgba(28, 141, 255, 0.12);
}

.btn-area-cliente div:nth-child(1) {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

.btn-area-cliente div:nth-child(2) {
  color: #03045e;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.btn-usuario {
    display: none;
    padding: var(--spacing-space-01, 0.25rem);
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-space-01, 0.25rem);
    border-radius: var(--spacing-space-03, 0.75rem);

    transition: all ease-in-out 0.3s;

    cursor: pointer;
}

.btn-usuario div {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.375rem;
    justify-content: center;
    align-items: center;

    border-radius: var(--spacing-space-03, 0.75rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.btn-usuario div svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.btn-usuario.active {
    display: flex;
}

.btn-usuario:hover {
    background: rgba(28, 141, 255, 0.12);
}

.btn-usuario svg {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.btn-entrar {
    display: none;
    width: 7.125rem;
    padding: var(--spacing-space-01, 0.25rem) var(--spacing-space-01, 0.25rem) var(--spacing-space-01, 0.25rem) var(--spacing-space-03, 0.75rem);
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-space-01, 0.25rem);
    flex-shrink: 0;

    border-radius: 1rem;

    background: rgba(22, 77, 160, 0.06);

    overflow: hidden;
    cursor: pointer;

    transition: all ease-in-out 0.3s;
}

.btn-entrar.active {
    display: flex;
}

.btn-entrar:hover {
    background: rgba(28, 141, 255, 0.12);
}

.btn-entrar div:nth-child(1) {
    display: flex;
    padding: 0rem var(--spacing-space-01, 0.25rem);
    align-items: center;
    gap: 0.625rem;
    flex: 1 0 0;

    color: #164da0;
    font-family: Nunito Sans;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btn-entrar div:nth-child(2) {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.375rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: var(--spacing-05, 0.75rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
}

.btn-entrar div:nth-child(2) svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}
/* Fim Botoes a direita no cabeçalho */

/* Container do conteudo principal */
.content {
  display: flex;
  flex-direction: column;

  align-items: center;

  padding: 0 1rem;
  width: 100%;

  background: #DFDFE8;
}
/* Fim container conteudo principal */

/* Barra de Ferramentas*/
.toolbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.toolbar {
  display: flex;
  height: 2rem;
  padding-left: 0px;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-space-02, 0.5rem);
  margin: 7px auto auto auto;
}
.toolbar-alerta {
  width:100%;
}

.toolbar-inset {
    display: flex;
    height: 2rem;
    width: 100%;
    padding: var(--spacing-space-01, 0.25rem) var(--spacing-space-01, 0.25rem)
    var(--spacing-space-01, 0.25rem) var(--spacing-space-04, 1rem);
    align-items: center;
    gap: var(--spacing-space-04, 1rem);
    border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.toolbar-inset span {
  color: rgba(0, 37, 110, 0.46);
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-toolbar {
  display: flex;
  padding: var(--spacing-space-01, 0.25rem);
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-04, 1rem);

  transition: all ease-in-out .3s;
}

.btn-toolbar button {
  border: none;
  color: #00256e;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  border-radius: 20px;
}

.btn-toolbar button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
}

.btn-toolbar button:hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

.btn-toolbar a {
  padding: 0.35rem;
  min-width: 120%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 20px;
  transition: all ease-in-out .3s;
}

.btn-toolbar a:hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

/* Fim barra de ferramentas */

/*Container por fora do principal*/
.main-content-container {
  display: flex;
  width: 100%;
  max-width: 90rem;

  position: relative;
}
/*Fim*/

.content-right-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 auto;
  width: 100%;
  max-width: 86.5rem;
}

/* Container dentro do principal (área em branco)*/
.content-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 0.75rem;
  width: 100%;
  max-width: 86.5rem;
  border-radius: var(--spacing-space-06, 2rem);
  background: #fff;
  flex: 1 1 auto;
}
/* Fim container dentro do principal (área em branco)*/

/* Cabeçalho (alertas)*/
.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.6875rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0.5rem;
    border-radius: 1.5rem !important;
    background: #104ca6;
    overflow: hidden;
    z-index: 100;
    margin-top: 10px;
}

.header-content-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 102;
}

.header-content-logo div:nth-child(1) svg {
  width: 1.5rem;
  height: 1.5rem;

  margin-left: 1rem;
  margin-right: 0.5rem;

  z-index: 102;
}

.header-content-logo div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: 102;
}

.header-content-logo-bg {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 11.5625rem;
  height: 2.688rem;
  flex-shrink: 0;
  z-index: 101;
  overflow: hidden;
  border-radius: 1.5rem ;
}

.header-content-logo div:nth-child(1) img {
  overflow: hidden;
  border-radius: 50
}

.header-content-buttons {
  display: flex;
}

.header-content-buttons {
  height: 2.6875rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content-buttons div {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;

  border-radius: 50%;
  cursor: pointer;

  transition: all ease-in-out 0.2s;
}

.header-content-buttons div:hover {
  background: #1865d9;
}

.header-content-buttons div:nth-child(1) {
  margin-right: 0.5rem;
}

.header-content-buttons div:nth-child(2) {
  margin-right: 0.3rem;
}

.header-content-marquee {
  display: flex;
  align-items: center;
  justify-self: center;

  color: #fff;
  width: 100%;

  color: #fff;
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

a.marquee-link {
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#marquee-container {
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

#marquee-content {
  width: 100%;
  display: inline-block;
  position: absolute;
}

#alert-slider-top {
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;

  width: 100%;
  display: inline-block;
  position: absolute;
}

[class^="number-slide"],
[class*=" number-slide"] {
  display: inline-block;
  text-align: center;

  color: #fff;
  font-weight: 500;
  height: 20px;
}

/* Fim cabeçalho (alertas) */

/* Seção do topo, Slide principal, chamada de assinatura e Botões rápidos */
.main-content {
  display: none;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 1200px;
}

.main-content.active {
  display: flex;
}

.top-section {
    display: grid;
    grid-template-columns: 1fr 3.3fr 2fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}
/*Main Slider */

.main-slider-container {
  max-height: 210px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.5rem;
  border: 2px solid rgba(0, 24, 85, 0.12);
  justify-content: center;

  transition: all ease-in-out 0.3s;
  overflow: hidden;
}

.main-slider {
    display: flex;
    height: 13.125rem;
    max-width: 621px;
    width: 100vw;
    border-radius: 1.5rem;
    background: #fff;

    transition: all ease-in-out 0.3s;

    overflow: hidden;
}

.main-slider-container:hover {
  box-shadow: rgba(50, 50, 93, 0.6) 0px 20px 20px -20px,
    rgba(0, 24, 85, 0.3) 0px 30px 60px -30px;
}

.main-slide img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: -webkit-fill-available;
}

.navigation-arrow-left, .navigation-arrow-right {
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;

  top: 0;

  width: 30px;
  height: 100%;

  /* border-radius: 0 2rem 2rem 0; */
  transition: all ease-in-out 0.3s;
  cursor: pointer;

  z-index: 1001;
}

.navigation-arrow-left {
  left: -30px;
  transform: scaleX(-1);
}

.navigation-arrow-right {
  right: -30px;
}

.navigation-arrow-left:hover, .navigation-arrow-right:hover {
  background: rgba(224, 224, 224, 0.46);
}

.navigation-tracker-main {
  position: absolute;

  display: flex;
  padding: 0rem var(--spacing-space-02, 0.5rem);
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  align-self: stretch;

  left: 10%;
  bottom: 0;
  height: 30px;
  width: 80%;

  opacity: 0;

  transition: all ease-in-out 0.3s;

  cursor: pointer;
  z-index: 1001;
}

.navigation-tracker-main-link {
  width: 0.6875rem;
  height: 0.6875rem;

  border-radius: 0.9375rem;
  background: #e0e3ea;

  transition: all ease-in-out 0.3s;

  cursor: pointer;
}

.navigation-tracker-main-link:hover {
  background: rgba(28, 141, 255, 0.5);
}

.navigation-tracker-main-link.active {
  width: 1.625rem;
  height: 0.6875rem;

  border-radius: 0.9375rem;
  background: #2563c0;

  transition: all ease-in-out 0.3s;

  cursor: auto;
}

.navigation-arrow-left.active {
    left: 0;
}

.navigation-arrow-right.active {
    right: 0;
}

.navigation-tracker-main.active {
    opacity: 1;
}

/* Fim main Slider*/

.promo-and-fast-buttons-container {
    display: flex;
    border-radius: var(--spacing-space-04, 1rem);
    overflow: hidden;
}

#reuniao_forum{
  border-radius: 1.5rem;
  width: 370px;
  height: 210px;
  object-fit: cover;
  object-position: left;
}

.promo-call {
    display: flex;
    padding: var(--spacing-space-04, 1rem);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-space-03, 0.75rem);
    z-index: 10;
    background: url('Imagens/bg_experimente.png') bottom center;
    background-size: cover;
    overflow: hidden;
}

.svg-fundo {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -20px;
  left: 0px;
  z-index: 20;
  width: 25rem;
  opacity: 0.5;
}

.svg-fundo svg {
  width: 100%;
  height: 100%;
}

.header-promo-call {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;

  z-index: 30;
}

.header-promo-call svg {
  width: 1.36213rem;
  height: 1.36213rem;

  margin-right: 0.91rem;
}

.header-promo-call span {
  color: #fff;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.separator-promo-call {
  width: 19.3125rem;
  height: 0.05675rem;

  border-bottom: 1px solid #2b5eb6;
}

.text-promo-call {
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.text-promo-call span {
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 13.942px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: fit-content;
    min-height: fit-content;
}
.text-promo-call span strong {
    color: #FFF;
    text-align: center;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.promo-call-mid {
    align-items: center;
    display: flex;
    align-self: stretch;
    z-index: 30;
    flex-direction: column;
    flex-grow: 1;
}

.keen-slider{

}
.buttons-promo-call {
    width: 100%;
    display: flex;
    gap: 15px;
    margin: 30px auto auto auto;
    align-items: normal;
    justify-content: center;
}

.buttons-promo-call a{
    padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
    border-radius: var(--spacing-space-04, 1rem);
    background: #0073E5;
    min-width: 160px;
    text-align: center;
    color: #fff;
    font-family: "Nunito Sans";
    font-size: 11.95px;
    font-style: normal;
    text-decoration: none;
    font-weight: 700;
    line-height: normal;
}

a.button-saiba-mais {
    padding-top: 9px;
    transition: all ease-in-out 0.3s;
}

a.button-saiba-mais:hover {
    box-shadow: rgba(255, 255, 255, 0.2) 0px 6px 12px -2px, rgba(255, 255, 255, 0.9) 0px 3px 7px -3px;
}

a.button-teste-agora {
    background: #30ffba;
    color: #000;
    transition: all ease-in-out 0.3s;
}

a.button-teste-agora:hover {
  box-shadow: rgba(255, 255, 255, 0.2) 0px 6px 12px -2px, rgba(255, 255, 255, 0.9) 0px 3px 7px -3px;
}

a.button-teste-agora svg {
  width: 1rem;
  height: 1rem;
}

.fast-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.fast-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-space-04, 1rem);
    align-self: stretch;
    padding: 12px;
    border-radius: var(--spacing-space-03, 0.75rem);
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    border-radius: 15.981px;
    background: rgba(0, 92, 207, 0.12);
}

.fast-button:hover {
    border-radius: var(--spacing-space-03, 0.75rem);
    background: rgba(28, 141, 255, 0.12);
}


.fast-button div:nth-child(2) {
    width: 5rem;
}

.fb-email{
    background: rgba(0, 46, 112, 0.12);
}

.fast-button div:nth-child(2) span {
    color: #0070FF;
    font-family: "Nunito Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

a.fast-button div:nth-child(1) {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

a.fast-button.fb-faq, a.fast-button.fb-telefone, a.fast-button.fb-email {
    text-decoration: none;
}

.content-meio-topo{
    display: flex;
    gap: 10px;
}

.content-left{
    display: flex;
    width: calc(100% - 365px);
    flex-direction: column;
}

.content-right{
    display: flex;
    width: 100%;
}


.modal-login-footer .text-promo-call {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 14.09192rem;
    z-index: 30;
}

.modal-login-footer .text-promo-call span {
    color: #fff;
    font-family: "Nunito Sans";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal-login-footer .text-promo-call span strong {
    color: #fff;
    font-family: "Nunito Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.modal-login-footer .promo-call-mid {
    display: flex;
    align-items: center;
    gap: 0.90806rem;
    flex: 1 0 0;
    align-self: stretch;
    z-index: 30;
}

.modal-login-footer a.button-saiba-mais {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 7.5rem;

    padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
    gap: 0.25rem;
    align-self: stretch;

    border-radius: var(--spacing-space-04, 1rem);
    background: #2563c0;

    color: #fff;
    font-family: "Nunito Sans";
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 0.94rem;

    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.modal-login-footer a.button-saiba-mais:hover {
    /* background: #2f7ff6; */
    box-shadow: rgba(255, 255, 255, 0.2) 0px 6px 12px -2px, rgba(255, 255, 255, 0.9) 0px 3px 7px -3px;
}

.modal-login-footer a.button-teste-agora {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 7.5rem;
    padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
    gap: 0.25rem;
    align-self: stretch;

    border-radius: var(--spacing-space-04, 1rem);
    background: #30ffba;

    color: #000;
    font-family: Nunito Sans;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.col-esq{
    display: flex;
    gap: 0.5rem;
}

.modal-login-footer a.button-teste-agora:hover {
    /* background: #85ffd6; */
    box-shadow: rgba(255, 255, 255, 0.2) 0px 6px 12px -2px, rgba(255, 255, 255, 0.9) 0px 3px 7px -3px;
}

.modal-login-footer a.button-teste-agora svg {
    width: 1rem;
    height: 1rem;
}

.modal-login-footer .buttons-promo-call{
    display: table;
}

/* Fim*/

/* Seção do meio */
.mid-section {
  display: grid;

  grid-template-areas:
    "attdiaria boletim express"
    "news tools tools";

  grid-template-columns: 1fr 1fr 1fr;

  gap: 0.5rem;

  /* height: 13.25rem; */
  width: 100%;
  /* max-width: 65.5rem; */

  /* margin-bottom: 0.5rem; */
}

.card-slider.card-att-diaria {
  grid-area: attdiaria;
  overflow: hidden;
  z-index: 300;
}

.card-slider.card-boletim {
    grid-area: boletim;
    overflow: hidden;
    z-index: 200;
}

.card-slider.card-econet-express {
  grid-area: express;
  overflow: hidden;
  z-index: 100;
}

.card-slider.card-news {
  grid-area: news;
}
.borders{
    border-left: 1px solid rgba(0, 24, 85, 0.12);
    border-right: 1px solid rgba(0, 24, 85, 0.12);
    padding: 0 5px;
}
.card-slider {
  display: flex;
  align-items: flex-start;

  flex-direction: column;

  height: 13.25rem;
  /* width: 21.3333rem; */
  padding: var(--spacing-space-02, 0.5rem);

  border-radius: var(--spacing-space-05, 1.5rem);
  border: 2px solid #FFF;
  background: #fff;
  transition: 0.3s;
  z-index: 10;
}

.card-slider:hover {
border-radius: 24px;
    border: 2px solid rgba(37, 99, 192, 0.20);
    background: #FFF;

    /* hover-01 */
    box-shadow: 0px 8px 24px 0px rgba(37, 99, 192, 0.16);
}

.card-slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin-bottom: 0.25rem;
}

.card-slider-top div:nth-child(1) {
  display: flex;
  width: 100%;
  min-width: 10.8333rem;

  height: 2rem;
  padding-left: 0px;
  align-items: center;
  gap: var(--spacing-space-02, 0.5rem);
  flex: 1 0 0;
  align-self: stretch;

  border-bottom: 1px solid rgba(0, 24, 85, 0.12);
}

.card-slider-top div:nth-child(1) svg {
  width: 1.25rem;
  height: 1.25rem;
}

.card-slider-top div:nth-child(1) span {
  color: #001855;
  font-family: Nunito Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-slider-top div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
  width: 100%;
  max-width: 9.5rem;
  padding: 0.375rem var(--spacing-space-01, 0.25rem) 0.375rem
    var(--spacing-space-02, 0.5rem);
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-04, 1rem);
  border: 1px solid rgba(0, 24, 85, 0.12);

  color: #58627c;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  transition: all ease-in-out 0.3s;
}

.card-slider-top div:nth-child(2):hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

button.btn.dropdown-toggle.btn-card-slider-top {
  height: 2rem;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: var(--spacing-space-04, 1rem);
  border: none;

  margin: 0;
  padding: 0.313rem;
}

.dropdown-menu.dropdown-menu-card-slider.show {
  width: 11rem;
  padding: var(--spacing-space-02, 0.5rem);
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-space-01, 0.25rem);

  border: none;

  border-radius: var(--spacing-space-03, 0.75rem);
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
}

a.solution-item {
  justify-content: initial !important;
}

.dropdown-menu-card-slider.show a, .dropdown-menu-card-slider.show span {
  display: flex;
  min-height: 2.25rem;
  padding: var(--spacing-space-01, 0.25rem) var(--spacing-space-02, 0.5rem);
  justify-content: flex-start;;
  align-items: center;
  gap: 0.625rem;


  border-radius: 0.5rem;

  color: #5a637d;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  transition: all ease-in-out 0.2s;

  text-decoration: none;

  cursor: pointer;
}

.dropdown-menu-card-slider.show a:hover, .dropdown-menu-card-slider.show span:hover {
  color: var(--LIGHT-BLUE);
  background: rgba(28, 141, 255, 0.12);
}

.toolbar-show-menu.dropdown-menu.dropdown-menu-card-slider li {
  width: 84%;
}


.card-slide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 100%;
  width: 500%;
  margin-bottom: 1.12rem;
  transition: all ease-in-out .8s;
}

.card-slide.news {
  display: grid;
  grid-template-columns: repeat(12, 349px);
  height: 100%;
  width: 1200%;
  margin-bottom: 0;
  overflow: hidden;
}

.card-slide.news a {
  height: 100%;
  padding: 0.5rem;
}

.card-slider-mid {
  display: flex;
  flex-direction: column;

  align-items: center;

  height: 6.875rem;
  padding: 0.5rem;
  gap: var(--spacing-space-02, 0.5rem);
  align-self: stretch;

  border-radius: var(--spacing-space-02, 0.5rem);

  overflow: hidden;
}

.card-slider-mid {
  transition: all ease-in-out 0.3s;
}

a.card-slider-mid {
  text-decoration: none;
}

.card-slider-mid div:nth-child(1) {
  display: flex;
  padding: var(--spacing-space-00, 0rem);
  align-items: center;
  gap: 0.25rem;
  align-self: stretch;

  border-radius: var(--spacing-space-01, 0.25rem);

  color: rgba(130, 137, 151, 0.64);
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.card-slider-mid div:nth-child(2) {
  /* height: 100%; */
  /* max-height: 1rem; */

  width: 100%;

  align-self: stretch;

  color: #2563c0;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* overflow: hidden; */
}

.card-slider-mid div:nth-child(3) {
  align-self: stretch;
  color: #71757e;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
}

.card-slider-mid:hover {
  border-radius: var(--spacing-space-02, 0.5rem);
  background: rgba(28, 141, 255, 0.12);
}

span.tag-boletim {
  display: flex;
  padding: 0.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;

  border-radius: var(--spacing-space-01, 0.25rem);
  background: rgba(130, 137, 151, 0.12);

  color: #828997;
  font-family: Nunito Sans;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

span.tag-econet-express {
  display: flex;
  padding: 0.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;

  border-radius: var(--spacing-space-01, 0.25rem);
  background: rgba(130, 137, 151, 0.12);

  color: #828997;
  font-family: Nunito Sans;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card-slider-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.card-slider-tracker {
  display: flex;
  padding: 0rem var(--spacing-space-02, 0.5rem);
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}

.card-slider-tracker-link {
  width: 0.6875rem;
  height: 0.6875rem;

  border-radius: 0.9375rem;
  background: #e0e3ea;

  transition: all ease-in-out 0.3s;

  cursor: pointer;
}

.card-slider-tracker-link:hover {
  background: rgba(28, 141, 255, 0.5);
}

.card-slider-tracker-link.active {
  width: 1.625rem;
  height: 0.6875rem;

  border-radius: 0.9375rem;
  background: #2563c0;

  transition: all ease-in-out 0.3s;

  cursor: auto;
}

.card-slider-button-ver-mais {
  display: flex;
  height: 2rem;
  width: 6.1878rem;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  justify-content: space-between;
  align-items: center;

  border-radius: var(--spacing-space-04, 1rem);
  background: rgba(37, 99, 192, 0.06);

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

a.card-slider-button-ver-mais {
  text-decoration: none;
}

.card-slider-button-ver-mais:hover {
  background: rgba(28, 141, 255, 0.12);
}

.card-slider-button-ver-mais span {
  color: #2563c0;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-slider-button-ver-mais svg {
  width: 1rem;
  height: 1rem;
}
/* Fim */

/* Seção abaixo do meio*/
.lower-section {
  display: grid;

  grid-template-columns: 1fr 2fr;

  gap: 0.5rem;

  /* height: 15.875rem; */

  width: 100%;
  /* max-width: 65.5rem; */

  margin-bottom: 0.75rem;
}

.card-news {
  display: flex;
  height: 15.875rem;
  /* width: 21.25rem; */
  padding: var(--spacing-space-02, 0.5rem);
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-05, 1.5rem);
  /* border: 2px solid rgba(0, 24, 85, 0.12); */
  background: #fff;

  transition: all ease-in-out 0.3s;
  z-index: 11;
}

.card-news:hover {
  box-shadow: rgba(50, 50, 93, 0.6) 0px 20px 20px -20px,
    rgba(0, 24, 85, 0.3) 0px 30px 60px -30px;
}

.card-news-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  height: 2.125rem;
  width: 100%;

  padding: var(--spacing-space-00, 0rem);
  gap: var(--spacing-space-00, 0rem);
  align-self: stretch;
}

.tab-videos {
  display: flex;
  min-height: 2rem;
  padding: 0.375rem var(--spacing-space-05, 1.5rem);
  justify-content: center;
  align-items: center;

  border-radius: var(--spacing-space-03, 0.75rem)
    var(--spacing-space-03, 0.75rem) var(--spacing-space-00, 0rem)
    var(--spacing-space-00, 0rem);
  border-bottom: 2px solid #dbdfe8;

  text-align: center;
  font-family: Nunito Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

.tab-videos:hover,
.tab-podcast:hover,
.tab-noticias:hover {
  color: #2563c0;
  border-bottom: 2px solid rgba(37, 99, 192, 0.46);
  background: rgba(37, 99, 192, 0.06);
}

.tab-videos.active,
.tab-podcast.active,
.tab-noticias.active {
  color: #2563c0;
  border-bottom: 2px solid rgba(37, 99, 192, 0.46);
}

.tab-podcast {
  display: flex;
  min-height: 2rem;
  padding: var(--spacing-space-00, 0rem);
  align-items: center;
  justify-content: center;

  border-bottom: 2px solid #dbdfe8;

  border-radius: var(--spacing-space-03, 0.75rem)
    var(--spacing-space-03, 0.75rem) var(--spacing-space-00, 0rem)
    var(--spacing-space-00, 0rem);
  border-bottom: 2px solid #dbdfe8;

  text-align: center;
  font-family: Nunito Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

.tab-noticias {
  display: flex;
  min-height: 2rem;
  padding: 0.375rem var(--spacing-space-05, 1.5rem);
  justify-content: center;
  align-items: center;

  border-radius: var(--spacing-space-03, 0.75rem)
    var(--spacing-space-03, 0.75rem) var(--spacing-space-00, 0rem)
    var(--spacing-space-00, 0rem);
  border-bottom: 2px solid #dbdfe8;

  text-align: center;
  font-family: Nunito Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

.card-news-mid {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 10rem;
  width: 100%;
  max-width: 21.8125rem;

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

.section-videos,
.section-podcast {
  display: none;
}

.section-podcast iframe {
  height: 10rem;
  width: 100%;
  max-width: 21.8125rem;
}

.section-videos.active,
.section-podcast.active {
  display: flex;
}

.section-noticias {
  display: none;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 0.625rem;
  padding: 0;

  overflow: hidden;
}

.section-noticias.active {
  display: flex;
}

.section-noticias-img {
  width: 6.9375rem;
  height: 8.0625rem;
  border-radius: var(--spacing-space-01, 0.25rem);
  background: url(<path-to-image>), lightgray 50% / cover no-repeat;
}

.section-noticias-texts {
  display: flex;
  width: 3.5625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  flex: 1 0 0;
  align-self: stretch;
}

.section-noticias-texts-date {
  display: flex;
  padding: var(--spacing-space-00, 0rem);
  align-items: center;
  gap: 0.25rem;
  align-self: stretch;

  border-radius: var(--spacing-space-01, 0.25rem);

  color: rgba(130, 137, 151, 0.64);
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  text-transform: uppercase;

  overflow: hidden;
  text-overflow: ellipsis;
}

.section-noticias-texts-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-space-02, 0.5rem);
  align-self: stretch;

  border-radius: var(--spacing-space-02, 0.5rem);
  background: rgba(28, 141, 255, 0);

  color: #2563c0;
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  max-height: 11.375rem;

  overflow: hidden;
  text-overflow: ellipsis;
}

.section-noticias-texts-text {
  display: flex;
  align-items: center;
  gap: var(--spacing-space-02, 0.5rem);
  align-self: stretch;

  border-radius: var(--spacing-space-02, 0.5rem);
  background: rgba(28, 141, 255, 0);

  color: #71757e;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  overflow: hidden;
  text-overflow: ellipsis;
}

.card-news-footer {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 2rem;
  width: 100%;
  /* max-width: 21.8125rem; */

  padding: 0rem var(--spacing-space-01, 0.25rem);
  gap: 0.25rem;
}

.footer-tab-videos {
  display: none;
}

.footer-tab-videos.active {
  display: flex;
}

a.btn-tab-videos {
  display: flex;
  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-04, 1rem);
  background: rgba(37, 99, 192, 0.06);

  color: #2563c0;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

a.btn-tab-videos svg {
  width: 1rem;
  height: 1rem;
}

a.btn-tab-videos:hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

.footer-tab-podcast {
  display: none;
  padding: 0rem var(--spacing-space-04, 1rem);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-space-01, 0.25rem);
  align-self: stretch;
}

.footer-tab-podcast.active {
  display: flex;
}

a.footer-tab-podcast {
  display: flex;
  width: 2rem;
  padding: var(--spacing-space-01, 0.25rem);
  justify-content: space-between;
  align-items: flex-start;

  border-radius: 2.8125rem;
  background: #fff;

  cursor: pointer;
  text-decoration: none;
}

.footer-tab-podcast a:hover {
  border-radius: 2.8125rem;
  background: rgba(28, 141, 255, 0.12);
}

.footer-tab-podcast span {
  color: #000;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-tab-podcast svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.footer-tab-noticias {
  display: none;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}

.footer-tab-noticias.active {
  display: flex;
}

.lower-section-div {
  margin-top: -16.275rem;
  height: 15.875rem;
  width: 20.25rem;

  z-index: 10;
}

.slider-tools {
    grid-area: tools;
    display: flex;
    height: 15.875rem;
    padding: 0.625rem;
    flex-direction: column;
    align-items: flex-start;

    border-radius: 15.933px;
    background: #EFF2F7;
    /* margin-top: -15.775rem; */
}

.slider-tools-top {
  display: flex;
  height: 2rem;
  padding: 0rem 0rem var(--spacing-space-00, 0rem) 0rem;
  align-items: center;
  gap: var(--spacing-space-04, 1rem);
  flex-shrink: 0;
  align-self: stretch;
}

.slider-tools-top div:nth-child(1) {
  display: flex;
  padding-left: 0px;
  align-items: center;
  /* gap: var(--spacing-space-02, 0.5rem); */
  flex: 1 0 0;
  align-self: stretch;

  color: #03045e;
  font-family: Nunito Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.logo-tools-and-solutions {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-bottom: 2px solid rgba(0, 24, 85, 0.12);
}

.logo-tools-and-solutions svg {
  width: 1.25rem;
  height: 1.25rem;
  margin: 10px;
}

a.btn-slider-tools-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  height: 2rem;
  width: 100%;
  max-width: 14.0625rem;

  padding: var(--spacing-space-02, 0.5rem) var(--spacing-space-03, 0.75rem);
  gap: var(--spacing-space-01, 0.25rem);

  border-radius: var(--spacing-space-04, 1rem);
  background: rgba(37, 99, 192, 0.06);

  text-decoration: none;

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

a.btn-slider-tools-top span {
  color: #2563c0;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

a.btn-slider-tools-top:hover {
  background: rgba(28, 141, 255, 0.12);
}

.slider-tools-top div:nth-child(2):hover {
  background: rgba(28, 141, 255, 0.12);
}

.slider-tools-top div:nth-child(2) svg {
  width: 1rem;
  height: 1rem;
}

.silder-tools-title {
  width: 100%;
  height: 0.875rem;

  margin-top: 0.81rem;

  color: #03045E;

  font-family: Nunito Sans;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.0625rem;
}

.slider-tools-tab.solutions, .slider-tools-tab.tools {
  display: none;
  height: 100%;
  width: 100%
}

.slider-tools-tab.solutions.active, .slider-tools-tab.tools.active {
  display: flex;
}

.tab-solutions, .tab-tools {
  height: 100%;
  width: fit-content;
  padding: 0.25rem 1.25rem;
  border-radius: var(--spacing-space-03, 0.75rem)
    var(--spacing-space-03, 0.75rem) var(--spacing-space-00, 0rem)
    var(--spacing-space-00, 0rem);

  border-bottom: 2px solid rgba(0, 24, 85, 0.12);

  transition: all ease-in-out 0.3s;

  cursor: pointer;
}

.tab-empty {
  height: 100%;
  width: 100%;
  border-bottom: 2px solid rgba(0, 24, 85, 0.12);
}

.tab-solutions.active , .tab-tools.active {
  border-bottom: 2px solid rgba(37, 99, 192, 0.46);
}

.tab-solutions:hover, .tab-tools:hover {
  color: #2563c0;
  border-bottom: 2px solid rgba(37, 99, 192, 0.46);
  background: rgba(37, 99, 192, 0.06);
}

.slider-tools-mid {
  width: 100%;
  display: flex;
  /* padding: 0.62rem 0; */
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;

  flex-direction: column;

  /* border-bottom: 1px solid #d4dce7; */
}

.slider-tools-mid-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.slider-tools-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  /* height: 6.8125rem; */
  width: 100%;

  padding: 0.25rem;
  gap: 0.5rem;

  border-radius: var(--spacing-space-04, 1rem);

  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

.slider-tools-item.tools {
  padding: 0.75rem;
}

a.slider-tools-item {
  text-decoration: none;
}

.slider-tools-item:hover {
  background: #d7eafc;
}

.slider-tools-item-img {
  border-radius: var(--spacing-space-03, 0.75rem);
  border: 0.607px solid rgba(0, 0, 0, 0.12);
  background: #fff;

  width: 2.125rem;
  height: 2.125rem;
}

.slider-tools-item-img svg {
  border-radius: var(--spacing-space-03, 0.75rem);
  border: 0.607px solid rgba(0, 0, 0, 0.12);
  background: #fff;

  width: 2.125rem;
  height: 2.125rem;
}

.slider-tools-item-img img {
  border-radius: var(--spacing-space-03, 0.75rem);
  border: 0.607px solid rgba(0, 0, 0, 0.12);
  background: #fff;

  width: 2.125rem;
  height: 2.125rem;
}

.slider-tools-item-title {

  max-width: 170px;
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis;

  display: block;
  justify-content: flex-start;
  align-items: center;

  color: #1c8dff;
  text-align: center;
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-overflow: hidden;
}

.slider-tools-item-title.tools {
  max-width: 170px;
}

.slider-tools-item-text {
  color: #000;
  text-align: center;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slider-tools-footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: var(--spacing-space-00, 0rem) 0rem;
  align-content: flex-start;
  gap: 0.25rem var(--spacing-space-01, 0.25rem);
  flex: 1 0 0;
  align-self: stretch;
  flex-wrap: wrap;

  margin-top: 0.32rem;

  border-radius: 0rem 0rem 1rem 1rem;
}

a.slider-tools-footer-item {
  display: flex;
  padding: var(--spacing-space-02, 0.5rem) 0.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-space-00, 0rem);
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--spacing-space-04, 1rem);

  cursor: pointer;

  transition: all ease-in-out 0.3s;

  text-decoration: none;
}

.slider-tools-footer-item:hover {
  background: #d7eafc;
}

.slider-tools-footer-item-title {
  color: #1c8dff;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.slider-tools-footer-item-text {
  color: #000;
  text-align: center;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slider-tools-footer-separator {
  width: 0.0625rem;
  height: 3.9375rem;

  margin-top: 0.3rem;
  background: #d4dce7;
}

/* Fim*/

/* Rodapé */
.footer-section {
  display: flex;
  /* height: 6.5461rem; */
  width: 100%;
  /* max-width: 90rem; */
  padding: 0rem var(--spacing-space-00, 0rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-space-00, 0rem);
}

.footer-container {
  width: 100%;
  max-width: 90rem;
}

.footer-top {
  display: grid;
  /* align-items: center; */
  /* justify-content: space-between; */

  grid-template-columns: 10.75rem 1fr 16.059rem;

  /* height: 2.75rem; */

  padding: var(--spacing-space-01, 0.25rem) 0rem;

  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 6.77419rem;
  height: 1.875rem;
}

.footer-logo svg {
  width: 5.07688rem;
  height: 1.25rem;
}

.footer-links ul,
li {
  margin: 0;
  padding: 0;
}

.footer-links ul {
  display: flex;
  padding: 0.5rem 0rem;
  align-items: center;
  justify-content: center;
  gap: 0.20394rem;
}

.footer-links li a {
  display: flex;
  /* height: 2.375rem; */
  padding: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: 2rem;

  color: #0070e0;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  text-decoration: none;

  transition: all ease-in-out 0.3s;
}

.footer-links li a:hover {
  color: #1c8dff;
  background: rgba(28, 141, 255, 0.12);
}

.footer-apps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-space-02, 0.5rem);
}

a.footer-app {
  display: flex;
  width: 7.875rem;
  height: 2.75088rem;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.53938rem;

  border-radius: 2rem;
  cursor: pointer;

  transition: all ease-in-out 0.3s;
}

a.footer-app:hover {
  background: rgba(28, 141, 255, 0.12);
}

a.footer-app:nth-child(1) svg {
  width: 6.14888rem;
  height: 1.42969rem;
}

a.footer-app:nth-child(2) svg {
  width: 5.83588rem;
  height: 1.39263rem;
  flex-shrink: 0;
}

.footer-footer {
  display: flex;
  padding: var(--spacing-space-02, 0.5rem) 0rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;

  border-top: 1px solid rgba(255, 255, 255, 0.64);
}

.footer-rights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;

  color: #8f97af;
  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hidden-link {
  width: 0.75rem;
  height: 0.75rem;

  cursor: pointer;
}

.hidden-link:hover {
  background: #000;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: var(--spacing-space-01, 0.25rem);
  flex-shrink: 0;

  background: linear-gradient(
    90deg,
    rgba(94, 241, 192, 0) 0%,
    #5ef1c0 47.92%,
    rgba(94, 241, 192, 0) 100%
  );
}

/*Fim*/

/* IFRAME ALVO*/
#alvo {
  display: none;

  width: 100%;
  height: 100%;
  margin-bottom: 1.5rem;

  max-width: 1200px;

  padding: 0.25rem 0.55rem 0 0.55rem;

  border-radius: 1.5rem;
}

#alvo.active {
  display: flex;
}

/* FIM*/

/* Alvo toolbar */
.alvo-toolbar {
  width: 100%;
  max-width: 75rem;
  height: 1.5rem;
  padding: 16px 6px;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.alvo-toolbar.active {
  display: flex;
}

.alvo-toolbar-left, .alvo-toolbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.alvo-toolbar-voltar, .alvo-toolbar-imprimir, .alvo-toolbar-add-biblioteca, .alvo-toolbar-aumentar {
  display: flex;
  /* width: 1.5rem; */
  /* height: 1.5rem;   */

  padding: 0.35rem;
  gap: 0.5rem;

  align-items: center;
  justify-content: center;

  border-radius: 1.4375rem;
  transition: all ease-in-out 0.3s;

  cursor: pointer;

  color: #1c8dff;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.alvo-toolbar-voltar:hover, .alvo-toolbar-imprimir:hover, .alvo-toolbar-add-biblioteca:hover, .alvo-toolbar-aumentar:hover {
  background: rgba(28, 141, 255, 0.12);
}


a#eXTReMe-Free-econet23 img{
  margin-left: -100%;
}

.mostraPopUp {
  display: none;
}

.modal-popup {
  position: absolute;
  top: 0;

  display: none;
  align-items: flex-start;
  justify-content: center;

  width: 100%;
  height: 110%;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1070;
}

.modal-popup.active {
  display: flex;
}

.modal-popup-container {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 0.5rem;

  width: 100%;
  /*max-width: 800px;*/

  height: 60%;

  margin-top: 5%;

  z-index: 1071;
}

.modal-imagem {
  position: relative;

  width: 100%;
  max-width: 800px;
}

.modal-imagem.tour {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* gap: 0.5rem; */
  height: auto;
  width: 100%;
  max-width: 500px;
  padding: 5px 5px 10px 5px;
  background: #fff;
  border-radius: 20px;
}

.texto-modal-tour {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
}

.texto-modal-tour span {
  color: #191A1E;
  text-align: center;
  font-family: Nunito Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.texto-tour-flutuante {
  position: absolute;
  top: 1.13rem;
  margin: 0 auto;

  color: #F2F5F9;
  text-align: center;
  font-family: Nunito Sans;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;


  width: 15rem;
  z-index: 1060;
}

.btns-modal-tour {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;

  gap: 1rem;
}

.btn-modal-tour {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 2rem;
  min-width: 2rem;
  padding: 0.5rem;
  gap: 0.25rem;

  transition: all ease-in-out .3s;

  border-radius: 1rem;
  background: #0073E5;
}

.btn-modal-tour:hover {
  background: rgba(28, 141, 255, 0.92);
}

a.btn-modal-tour {
  color: #FFF;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-decoration: none;
}

.modal-imagem a img {
  width: 100%;
  object-fit: cover;

  max-height: 500px;

  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(2, 3, 64, 0.4);
}

.modal-popup-fechar {
  position: absolute;
  top: 10px;
  right: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;

  height: 1.5rem;
  width: 1.5rem;

  border-radius: 50%;

  background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(37, 99, 192, 0.16);

  z-index: 1072;

  transition: all ease-in-out .3s;
  cursor: pointer;
}

.modal-popup-fechar:hover {
  background: #F6E0DD;
}

.modal-popup-mensagem {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 32%;

  gap: 0.5rem;

  padding: 0 20px;

  color: white;

  font-family: "Nunito Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.modal-popup-mensagem.tour {
  width: 500px;
}

a.btn.acessar-versao-anterior {
  display: flex;
  height: 30px;
  min-width: 2rem;
  padding: var(--spacing-04, 0.5rem);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-02, 0.25rem);
  border-radius: 0px;
  background: var(--azul-marinho-20, #03045E);
}

.tag-novo {
  display: inline-flex;
  height: var(--spacing-06, 1rem);
  padding: 0rem 0.375rem;
  align-items: center;
  gap: var(--spacing-02, 0.25rem);

  border-radius: var(--radius-xsmall, 0.5rem);
  background: #5EF1C0;

  color: #000;

  text-align: center;
  font-family: Nunito Sans;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Fim*/

.redirecionar-link {
  display: none;
}

/* ===== Scrollbar CSS ===== */
/* For Webkit browsers */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
  background-color: #d6dee833;
  border-radius: 5px;
}

/* On hover */
*::-webkit-scrollbar-thumb:hover {
  background-color: #d3e3fa;
}

/* On parent element hover */
*:hover ::-webkit-scrollbar-thumb {
  background-color: #94aac9;
}

.top-left-menu {
  display: none;
  align-items: center;
  justify-content: center;
}

.link-fatura-area-cliente {
  display: none;
  padding: 0.25rem;

  border-radius: 50%;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.link-fatura-area-cliente.active {
  display: block;
}

.link-fatura-area-cliente svg {
  width: 1rem;
  height: 1rem;
}

.link-fatura-area-cliente:hover {
  background: rgba(28, 141, 255, 0.12);
}

.pop-up-cookies {
  position: fixed;
  right: 20px;

  bottom: -3.5rem;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 1rem;
  gap: 1rem;

  border-radius: 2rem;
  background: #F2F5F9;
  box-shadow: 0px 4px 32px 0px rgba(101, 122, 144, 0.26);

  transition: all ease-in-out .3s;

  z-index: 1075;
}

.pop-up-cookies.active {
  display: flex;
  bottom: 1rem;
}

.pop-up-cookies-spans {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.pop-up-cookies-spans span {
  color: #000;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pop-up-cookies-spans span a {
  color: #005CCF;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}

.pop-up-cookies-btn {
  display: flex;
  height: 2rem;
  min-width: 2rem;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  gap:  0.25rem;
  border-radius: 1rem;
  background: #0073E5;
  cursor: pointer;
}

.pop-up-cookies-btn span {
  color: #FFF;
  font-family: Nunito Sans;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#toolbar-bordered {
  padding: var(--spacing-spacing-04, 8px) 12px;
  border-radius: var(--size-06, 12px);
  border: 1px solid var(--color-blue-40, #005CCF);
  min-width: 100%;
}

#toolbar-bordered:hover {
  border: none;
}

@media screen and (max-width: 1380px) {
  .main-slider img{
    width: 100%;
  }
}
@media screen and (max-width: 1259px) {
  .menu-item-text,
  .menu-item-arrow {
    display: none;
  }

  .menu-sidebar {
    width: 3.5rem;
  }

  /* div.header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  } */

  /* .btn-header-logo  {
    display: none;
  } */

  /* .input-pesquisa {
    display: none;
  } */

  /* .btn-minha-biblioteca.active {
    display: none;
  }

  .btn-atendimento.active {
    display: none;
  }

  .input-pesquisa-mobile {
    display: flex;
  }   */

  /* .header-logo-container {
    justify-content: center;
  } */

  .top-left-menu {
    display: flex;
    justify-content: unset;
  }

  /* .pesquisa {
    display: none;
  }   */

  .menu-hamburguer {
    display: flex;
  }

  .menu-sidebar {
    display: none;
  }

  .top-bar-socials {
    display: none;
  }

  .toolbar {
    border: none;
  }
  .content-body{
    min-height: 80vh;
  }
}

@media screen and (max-width: 1120px) {
    .top-section{
        flex-direction: column;
    }
    .col-esq{
        margin: auto;
    }
    .promo-and-fast-buttons-container{
        display: block;
    }
}
@media screen and (max-width: 1024px) {
    .col-esq{
        flex-direction: column;
    }

  .mid-section {
    grid-template-areas:
    "attdiaria boletim"
    "express news"
    "tools tools";

    grid-template-columns: 1fr 1fr;
    margin-bottom: 0.5rem;
  }

  .lower-section {
    grid-template-columns: 1fr;
  }

  .lower-section-div {
    display: none;
  }

  .slider-tools {
    margin-top: 0;
  }

  .card-slider-mid {
    height: 100%;
  }

  .card-slider {
    height: auto;
  }

  .promo-call {
    gap: 0.2rem;
  }

  .promo-call-mid {
    flex-direction: column;
    gap: 0.2rem;
  }

  a.button-saiba-mais {
    width: 100%;
  }

  a.button-teste-agora {
    width: 100%;
  }

  .toolbar,
  .toolbar-inset {
    height: 2.5rem;
    border-radius: var(--spacing-space-06, 2rem);
    gap: 0;
  }

  .toolbar-inset {
    justify-content: center;
  }

  .toolbar-inset span {
    display: none;
  }

  a.btn.acessar-versao-anterior {
    display: none;
  }

  .footer-section {
    padding: 1rem 1rem 0 4rem;
  }

  .footer-top,
  .footer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 960px) {
  .top-section {
    grid-template-columns: 2fr 1fr;
  }

  .fast-buttons {
    flex-direction: row;
    grid-column: 1 / -1;
  }

  a.fast-button {
    flex-direction: column;
  }

  a.fast-button div:nth-child(2) {
    width: auto;
  }

  .fast-button-divider {
    display: none;
  }

  .toolbar {
    width: 100%;
    max-width: 42rem;
  }

  .toolbar-inset {
    width: 100%;
    max-width: 38rem;
  }

  .btn-toolbar {
    gap: 0;
    padding: 0;
  }

  .btn-toolbar button {
    gap: 0;
  }

  .item-busca-span {
    display: none;
  }
}


@media screen and (max-width: 830px) {
  .btn-minha-biblioteca, .btn-atendimento, .btn-area-cliente {
    width: auto;
  }

/*  .btn-atendimento {
    margin: 0;
  }*/

  .btn-area-cliente {
    margin: 0;
  }

  .btn-minha-biblioteca div:nth-child(2), .btn-atendimento div:nth-child(2), .btn-area-cliente div:nth-child(2) {
    display: none;
  }
 }

@media screen and (max-width: 768px) {
  .toolbar-container {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .content.body,
  .content {
    padding: 0;
  }
}


@media screen and (max-height: 760px){
  .submenu-boletim{
    height: 160px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .menu-state-ne{
    height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .legislation-menu{
    margin-top: 70px !important;
  }
  .menu-flag{
    overflow-x: hidden;
    overflow-y:scroll;
    height: 160px;
  }
  .dropup-menu-solucoes{
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 300px;
  }
  .submenu-boletim::-webkit-scrollbar, .dropup-menu-solucoes::-webkit-scrollbar,.menu-state-ne::-webkit-scrollbar,
  .menu-flag::-webkit-scrollbar{
    background-color:whitesmoke ;
    border-radius: 3px;
}





@media screen and (max-width: 665px) {
  .main-slider {
    height: 209px;
  }
  .main-slide img {
    object-fit: cover;
  }

  .footer-links ul {
    flex-direction: column;
  }

  div.footer-rights {
    flex-direction: column;
    text-align: center;
  }

  .mid-section {
    grid-template-areas:
    "attdiaria"
    "boletim"
    "express"
    "news"
    "tools";

  /*  */
    grid-template-columns: 1fr;
  }

  .top-section {
    grid-template-columns: 1fr;
  }

  .toolbar-container {
    overflow-x: scroll;
  }

  .toolbar-inset {
    min-width: 27.966rem;
  }

  .fast-button > div:nth-child(2) {
    text-align: center;
  }

  .slider-tools-item:nth-child(3),
  .slider-tools-footer-item:nth-child(3) {
    display: none;
  }

  div.slider-tools-footer-separator:nth-child(2) {
    display: none;
  }

  .promo-call-mid {
    flex-direction: row;
  }

  .tab {
    padding: 0;
  }

  .tab.section-videos {
    width: 100%;
    max-width: 340px;
  }

  div.tab.section-videos iframe {
    width: 100%;
    max-width: 340px;
  }

  .header-content-logo-bg {
    display: none;
  }

  .header-content-logo div:nth-child(2) {
    display: none;
  }

  .slider-tools-mid {
    padding: 0;
  }

  .footer-section {
    padding: 1rem 0 0 0;
  }

  .top-bar-container {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {

  .header {
    height: auto;
    flex-direction: column-reverse;
  }

  .header-logo-container {
    display: none;
  }

  .header-logo-container.mobile {
    display: flex;
  }

  .login-buttons-container {
    width: 100%;
    justify-content: space-between;
  }

  .input-pesquisa.input-group {
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 560px) {
  .pop-up-cookies {
    flex-direction: column;
    left: 20px;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 510px) {
  .alvo-toolbar-right {
    gap: 1rem;
  }

  .alvo-toolbar-aumentar span , .alvo-toolbar-imprimir span, .alvo-toolbar-add-biblioteca span {
    display: none;
  }
}

@media screen and (max-width: 465px) {
  .btn-entrar.active {
    width: unset;
    padding: 0.25rem;
  }

  .btn-entrar div:nth-child(1) {
    display: none;
  }

  .btn-slider-tools-top span {
    display: none;
  }

  .btn-fale-conosco {
    width: auto;
  }

  .btn-fale-conosco div:nth-child(2) {
    display: none;
  }

  .slider-tools-top {
    display: grid;
    grid-template-columns: 10fr 1fr;
  }

  .slider-tools-top div:nth-child(2) span {
    display: none;
  }

  .slider-tools-mid-row {
    flex-direction: column;
  }

  .slider-tools-mid-row:nth-child(2), .slider-tools-mid-row:nth-child(3) {
    display: none;
  }

  .slider-tools-item:nth-child(3),
  .slider-tools-footer-item:nth-child(3) {
    display: flex;
  }

  .logo-tools-and-solutions {
    display: none !important;
  }
}

@media screen and (max-width: 375px) {

  .main-slider {
    height: auto;
  }

  .card-news {
    max-width: 351px;
  }

  .card-slider-mid.news {
    max-width: 328px;
  }

  .card-slide.news {
    grid-template-columns: repeat(10, 330px);
  }
}

@media screen and (max-width: 360px) {
  .card-news {
    max-width: 336px;
  }

  .card-slider-mid.news {
    max-width: 312px;
  }

  .card-slide.news {
    grid-template-columns: repeat(10, 316px);
  }
}
}