:root {
  --texto: #343a40;
  --laranja: #EF7C00;
  --l_azul: #009FE3;
  --d_azul: #273683;
  --vermelho: #CC1719;
  --d_verde: #1A3528;
  --d_azul-t: #02447D;
  --cinza: #343A40;
  font-size: 16px;
  font-weight: 500;
}

a.ab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
}

.hamburger {
  position: absolute;
  right: 20px;
  z-index: 99;
  top: 20px;
}
@media (min-width: 990px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  width: 30px;
  height: 3px;
  border-radius: 2rem;
  background-color: var(--d_azul-t);
  display: block;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.is-active .line {
  background-color: white;
}

.hamburger:hover {
  cursor: pointer;
}

/* ONE */
#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

header {
  background-color: var(--d_azul-t);
  height: auto;
  align-items: center;
}
header .logo_entries {
  background-color: white;
}
header .linguas a {
  color: var(--d_azul-t);
  font-weight: 900;
  font-size: 12px;
}
header .link_externo a {
  width: 195px;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  height: 30px;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  flex-direction: initial;
  flex-wrap: wrap;
  justify-content: center;
  background: #02447D !important;
  border-color: #02447D;
  align-items: center;
}
header .link_externo a img {
  margin-right: 0.4rem;
  width: 5%;
  height: 10px;
}
header .link_externo a:hover {
  background-color: #02447D;
  color: white;
}
header .search {
  margin-right: 1rem;
}
header .menu-desk ul {
  list-style: none;
  display: flex;
  position: relative;
  align-items: center;
  z-index: 9;
  margin-bottom: 0;
  width: 100%;
  padding-left: 0;
  transition: all 0.4s ease;
  justify-content: center;
}
header .menu-desk ul li {
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: 2rem;
  height: 40px;
  display: inline-flex;
  align-items: center;
  padding-right: 0.7rem;
  padding-left: 0.7rem;
  position: relative;
  transition: all 0.4s ease;
}
header .menu-desk ul li:first-child {
  padding-left: 0;
}
header .menu-desk ul li:first-child a {
  padding-left: 0.7rem;
}
header .menu-desk ul li.menu-item-has-children:after {
  content: "";
  background: url(../imgs/arrow_menu.png);
  width: 12px;
  height: 14px;
  display: block;
  rotate: -180deg;
  margin-left: 0.7rem;
}
header .menu-desk ul li.menu-item-has-children:hover:after {
  rotate: 0deg;
}
header .menu-desk ul li:hover, header .menu-desk ul li.current-menu-parent, header .menu-desk ul li.current-menu-item {
  background-color: var(--l_azul);
  transition: all 0.4s ease;
}
header .menu-desk ul li:nth-child(3) .sub-menu {
  bottom: -52px;
}
header .menu-desk ul li .sub-menu {
  visibility: hidden;
  background-color: var(--d_azul-t);
  padding: 0;
  opacity: 0;
  position: absolute;
  bottom: -100px;
  max-width: 100%;
  display: flex;
  align-items: normal;
  height: 100%;
  left: 0;
  transition: all 0.4s ease-in-out;
  flex-direction: column;
}
header .menu-desk ul li .sub-menu li {
  max-width: 100%;
  margin-right: 0;
  display: block;
  height: auto;
  background-color: var(--d_azul-t);
}
header .menu-desk ul li .sub-menu li a {
  width: 100%;
  display: block;
  padding-right: 2rem;
  padding-block: 0.4em;
}
header .menu-desk ul li .sub-menu li:hover {
  background-color: var(--l_azul);
}
header .menu-desk ul li:hover a {
  color: white;
}
header .menu-desk ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
header .menu-desk ul li a {
  color: white;
}
@media (max-width: 880px) {
  header .menu-desk ul li a {
    font-size: 24px;
    margin-bottom: 1.7rem;
  }
}
header .logo_mob {
  display: none;
}
header .logo_mob.active {
  position: relative;
  z-index: 99999;
  display: block;
}
@media (max-width: 990px) {
  header nav.menu_mob {
    position: relative;
    z-index: 99999;
    background: var(--d_azul-t);
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    margin-inline-start: -300px;
    transition: all 0.4s ease;
    padding-block-start: 8rem;
    text-align: center;
  }
  header nav.menu_mob .logo {
    position: absolute;
    top: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 2rem;
    width: 100%;
  }
  header nav.menu_mob .logo img {
    width: 250px;
  }
  header nav.menu_mob ul {
    padding: 0;
  }
  header nav.menu_mob ul li {
    list-style: none;
    padding-block: 0.7rem;
  }
  header nav.menu_mob ul li a {
    color: white;
    font-size: 16px;
  }
  header nav.menu_mob ul li.menu-item-has-children {
    position: relative;
  }
  header nav.menu_mob ul li.menu-item-has-children.active_ {
    display: block;
    background-color: var(--l_azul);
  }
  header nav.menu_mob ul li.menu-item-has-children.active_ .sub-menu {
    display: block;
  }
  header nav.menu_mob ul li.menu-item-has-children.active_ .sub-menu a:after {
    display: none;
  }
  header nav.menu_mob ul li.menu-item-has-children.active_ a:after {
    rotate: 0deg;
  }
  header nav.menu_mob ul li.menu-item-has-children a {
    position: relative;
  }
  header nav.menu_mob ul li.menu-item-has-children a:after {
    content: "";
    background: url(../imgs/arrow_menu.png);
    width: 12px;
    height: 14px;
    display: block;
    rotate: -180deg;
    margin-left: 0.7rem;
    right: -20px;
    top: 4px;
    position: absolute;
  }
  header nav.menu_mob ul.sub-menu {
    padding-left: 0;
    display: none;
  }
  header nav.menu_mob ul.sub-menu li {
    padding-block: 0.2rem;
  }
  header nav.menu_mob .content_infos {
    margin-bottom: 2rem;
  }
  header nav.menu_mob .content_infos .search_mob {
    width: 80%;
    margin-bottom: 1rem;
  }
  header nav.menu_mob .content_infos .search_mob input {
    border: 0;
    padding: 4px;
    width: 100%;
  }
}
@media (max-width: 990px) and (max-width: 990px) {
  header nav.menu_mob .content_infos {
    justify-content: space-around;
    gap: 20px;
    padding-inline: 1rem;
  }
}
@media (max-width: 990px) and (min-width: 200px) and (max-width: 390px) {
  header nav.menu_mob .content_infos {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (max-width: 990px) {
  header nav.active {
    opacity: 1;
    pointer-events: all;
    margin-inline-start: 0;
  }
}

.cover {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: black;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: opacity 0.3s ease-in;
}
.cover.show {
  opacity: 0.6;
  visibility: visible;
}

#header_search {
  position: absolute;
  width: 70%;
  top: 20%;
  z-index: 9;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in;
}
#header_search.show {
  opacity: 1;
  visibility: visible;
}
#header_search .close {
  position: absolute;
  right: 20px;
  top: 10px;
}
#header_search form {
  background-color: var(--d_azul-t);
  border-radius: 20px;
  padding: 1rem 3rem;
}
#header_search form input {
  width: 100%;
  background: white;
  padding: 0.7rem;
  border: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cinza);
  background-color: white;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

h2.title {
  color: var(--d_azul-t);
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 990px) {
  h2.title {
    text-align: center;
    font-size: 24px;
  }
}

.interna h2 {
  color: var(--d_azul-t);
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 990px) {
  .interna h2 {
    font-size: 24px;
  }
}

.r-20 {
  border-radius: 20px;
}

.gray {
  background-color: #F1F3F5;
}

.title_busca {
  color: var(--d_azul-t);
  font-size: 30px;
  font-weight: 900;
}

a.btn {
  border-radius: 10px;
  display: inline-block;
  font-size: 14px;
  transition: all 0.4s ease;
}
a.btn_azul {
  color: white;
  background-color: var(--d_azul-t);
  border: 1px solid var(--d_azul-t);
  padding: 1rem 2.75rem;
  width: 240px;
}
a.btn_azul:hover {
  background-color: white;
  color: var(--d_azul-t);
}
a.btn_azul_claro {
  color: white;
  background-color: var(--l_azul);
  border: 1px solid var(--l_azul);
  padding: 1rem 2.75rem;
  width: 240px;
}
a.btn_azul_claro:hover {
  background-color: white;
  color: var(--d_azul-t);
}

#banner {
  height: auto;
  margin-bottom: 3rem;
}
@media (max-width: 990px) {
  #banner {
    margin-bottom: 2rem;
  }
}
#banner.interna_acervo {
  position: relative;
  padding-top: 8rem;
  height: auto !important;
}
#banner.interna_acervo .slick-slide {
  height: 380px;
}
@media (max-width: 990px) {
  #banner.interna_acervo {
    padding-top: 2rem;
  }
}
#banner.interna_acervo:after {
  content: "";
  background: url(../imgs/linha_acervo.png) no-repeat;
  width: 674px;
  height: 238px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 990px) {
  #banner.interna_acervo:after {
    width: 100%;
  }
}
@media (max-width: 990px) {
  #banner.interna_acervo img {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
}
#banner.interna {
  margin-bottom: 0;
  height: 380px;
}
#banner.interna .slick-slide {
  height: 380px;
}
#banner.interna_contato {
  position: relative;
  padding-top: 8rem;
  height: auto;
}
@media (max-width: 990px) {
  #banner.interna_contato {
    padding-top: 2rem;
  }
  #banner.interna_contato img {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
  }
}
#banner.interna_contato:after {
  content: "";
  background: url(../imgs/linha_contato.png) no-repeat;
  width: 674px;
  height: 238px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 720px) {
  #banner.interna_contato:after {
    display: none;
  }
}
#banner.interna hr {
  background-color: var(--d_azul-t);
  height: 1px;
  opacity: 1;
}
#banner .play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .slick-slide {
  height: auto;
}
#banner .slick-next, #banner .slick-prev {
  width: 26px;
  height: 40px;
}
#banner .slick-next::before, #banner .slick-prev::before {
  display: none;
}
#banner .slick-next {
  background: url(../imgs/next_arrow-w.png) no-repeat;
  right: 25px;
}
#banner .slick-prev {
  background: url(../imgs/prev_arrow-w.png) no-repeat;
  left: 25px;
  z-index: 6;
}

#produtos {
  position: relative;
}
#produtos:after {
  content: "";
  background: url(../imgs/linhas.svg) no-repeat;
  width: 165px;
  height: 1150px;
  position: absolute;
  right: 0;
  top: -5rem;
}
@media (max-width: 990px) {
  #produtos:after {
    display: none;
  }
}
#produtos #exTab2 {
  border-bottom: 1px solid var(--d_azul);
  margin-top: 3rem;
}
#produtos #exTab2 .nav-tabs {
  border: 0;
  margin-bottom: 0.7rem;
  padding-inline-start: 2rem;
}
@media (max-width: 990px) {
  #produtos #exTab2 .nav-tabs {
    padding-inline-start: 0;
  }
}
#produtos #exTab2 .nav-tabs li {
  margin-right: 2.7rem;
}
@media (max-width: 990px) {
  #produtos #exTab2 .nav-tabs li {
    margin-right: 12px;
    margin-bottom: 10px;
  }
}
#produtos #exTab2 .nav-tabs li a {
  color: var(--texto);
}
#produtos #exTab2 .nav-tabs li.active a {
  color: var(--d_azul-t);
  font-weight: bold;
}
#produtos .tab-content {
  margin-top: 2rem;
}
#produtos .slick-slide {
  display: flex;
  justify-content: center;
}
#produtos .slick-next, #produtos .slick-prev {
  width: 26px;
  height: 40px;
}
#produtos .slick-next::before, #produtos .slick-prev::before {
  display: none;
}
#produtos .slick-next {
  background: url(../imgs/next_arrow.png) no-repeat;
}
@media (max-width: 990px) {
  #produtos .slick-next {
    right: 0;
  }
}
#produtos .slick-prev {
  background: url(../imgs/prev_arrow.png) no-repeat;
}
@media (max-width: 990px) {
  #produtos .slick-prev {
    left: 0;
    z-index: 9;
  }
}
#produtos .protecao {
  position: absolute;
  color: white;
  background: url(../imgs/protecao.svg) no-repeat 6px;
  font-weight: bold;
  top: 0;
  right: 0;
  padding: 10px 6px 10px 38px;
  border-radius: 0 20px 0 0;
}
#produtos .protecao.security-work {
  background-color: var(--d_verde);
}
#produtos .protecao.visual-work {
  background-color: var(--l_azul);
}
#produtos .protecao.useful-work {
  background-color: var(--d_azul);
}
#produtos .protecao.classic-work {
  background-color: var(--vermelho);
}
#produtos .protecao.fr {
  background-color: var(--laranja);
}
#produtos .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 278px;
}
#produtos .content img {
  border-radius: 20px;
}
#produtos .box {
  background: white;
  border-radius: 15px;
  margin: -56px 0 43px 0;
  width: 100%;
  padding-inline: 17px;
  padding-block: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 2px 2px -2px, rgba(0, 0, 0, 0.05) 0 4px 4px -2px, rgba(0, 0, 0, 0.05) 0 8px 8px -2px, rgba(0, 0, 0, 0.05) 0 16px 16px -2px, rgba(0, 0, 0, 0.05) 0 32px 32px -2px;
  font-size: 12px;
}
#produtos .box p {
  margin-bottom: 0;
}
#produtos .box h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
#produtos.interna {
  background: #F1F3F5;
  min-height: 640px;
  padding-top: 4rem;
}
@media (max-width: 990px) {
  #produtos.interna {
    overflow: hidden;
  }
}
#produtos.interna:after {
  display: none;
}
#produtos.interna .slider_tipos {
  max-width: 1100px;
  margin: 0 auto;
  position: absolute;
  right: -16%;
  padding-bottom: 2rem;
}
@media (max-width: 990px) {
  #produtos.interna .slider_tipos {
    max-width: 100%;
    position: inherit;
  }
}
#produtos.interna .slider_tipos .box_tipo {
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 2px 2px -2px, rgba(0, 0, 0, 0.05) 0 4px 4px -2px, rgba(0, 0, 0, 0.05) 0 8px 8px -2px, rgba(0, 0, 0, 0.05) 0 16px 16px -2px, rgba(0, 0, 0, 0.05) 0 32px 32px -2px;
  margin: 10px;
  padding-inline: 1rem;
  padding-block: 1rem;
  min-height: 370px;
  margin-bottom: 3rem;
}
@media (max-width: 990px) {
  #produtos.interna .slider_tipos .box_tipo {
    min-height: auto;
  }
}
#produtos.interna .slider_tipos h3 {
  font-size: 16px;
  color: var(--d_azul-t);
  font-weight: 900;
  text-transform: none;
}
#produtos.interna .slider_tipos h2 {
  font-size: 16px;
  font-weight: 400;
}
#produtos.interna .slider_tipos .slick-dots {
  bottom: 20px;
}
#produtos.interna .slider_tipos h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto);
}
#produtos.interna .slider_tipos .text {
  font-size: 14px;
}
#produtos.interna .slider_tipos .img {
  text-align: center;
}
#produtos.interna .slider_tipos .img img {
  margin: 0 auto;
}
#produtos.interna .slider_tipos .slick-slide {
  display: flex;
  justify-content: center;
}
#produtos.interna .slider_tipos .slick-next, #produtos.interna .slider_tipos .slick-prev {
  bottom: 0%;
  top: initial;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  padding: 1rem;
  right: 28%;
  background-position: 14px 10px !important;
  left: initial;
  transition: all 0.4s ease;
}
#produtos.interna .slider_tipos .slick-next::before, #produtos.interna .slider_tipos .slick-prev::before {
  display: none;
}
#produtos.interna .slider_tipos .slick-next {
  background: var(--d_azul-t) url(../imgs/arrow_w-right.png) no-repeat;
  right: 30%;
  z-index: 9;
}
#produtos.interna .slider_tipos .slick-next:hover {
  background: var(--l_azul) url(../imgs/arrow_w-right.png) no-repeat;
}
#produtos.interna .slider_tipos .slick-prev {
  background: var(--d_azul-t) url(../imgs/arrow_w-left.png) no-repeat;
  right: 35%;
  z-index: 9;
}
#produtos.interna .slider_tipos .slick-prev:hover {
  background: var(--l_azul) url(../imgs/arrow_w-left.png) no-repeat;
}
#produtos.interna .slider_tipos .slick-list {
  padding-left: 0px !important;
}
#produtos.interna.interna_solucoes .slick {
  margin-top: 5rem;
}
#produtos.interna.interna_solucoes .slick-next {
  right: 16%;
}
#produtos.interna.interna_solucoes .slick-prev {
  background: var(--d_azul-t) url(../imgs/arrow_w-left.png) no-repeat;
  right: 20%;
}
#produtos.interna.interna_solucoes .slider_tipos {
  max-width: 100%;
  margin: 0 auto;
  position: initial;
  right: 0%;
  padding-bottom: 2rem;
}

#linhas {
  position: relative;
}
#linhas:after {
  content: "";
  background: url(../imgs/linha_g.svg) no-repeat;
  width: 357px;
  height: 903px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
#linhas::before {
  content: "";
  background: url(../imgs/linha_g_b.svg) no-repeat;
  width: 291px;
  height: 731px;
  position: absolute;
  left: 0;
  bottom: 200px;
  z-index: -1;
}
@media (max-width: 990px) {
  #linhas::before, #linhas:after {
    display: none;
  }
}
#linhas .box_destaque-produto {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  border-radius: 40px;
  background: #F1F3F5;
  padding: 2rem 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 990px) {
  #linhas .box_destaque-produto {
    width: 94%;
    margin: 0 auto 1rem;
    padding: 1rem;
  }
}
#linhas .box_destaque-produto .img {
  width: 376px;
}
#linhas .box_destaque-produto .img img {
  width: 100%;
  border-radius: 20px;
}
#linhas .box_destaque-produto .text {
  width: 60%;
}
@media (max-width: 990px) {
  #linhas .box_destaque-produto .text {
    width: 100%;
  }
}
#linhas .box_destaque-produto h2 {
  font-size: 30px;
}
@media (max-width: 990px) {
  #linhas .box_destaque-produto h2 {
    font-size: 24px;
  }
}
#linhas .box_destaque-produto a {
  color: white;
  width: 240px;
  padding-block: 1rem;
}
@media (max-width: 990px) {
  #linhas .box_destaque-produto a {
    display: block;
    margin: 0 auto;
  }
}

#linha_list {
  position: relative;
}
#linha_list:after {
  content: "";
  background: url(../imgs/linha_p.svg) no-repeat;
  width: 119px;
  height: 419px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 990px) {
  #linha_list:after {
    display: none;
  }
}
@media (max-width: 990px) {
  #linha_list .slick-slider {
    padding: 0 2rem;
  }
  #linha_list .slick-next, #linha_list .slick-prev {
    width: 26px;
    height: 40px;
    top: 30%;
  }
  #linha_list .slick-next::before, #linha_list .slick-prev::before {
    display: none;
  }
  #linha_list .slick-next {
    background: url(../imgs/next_arrow.png) no-repeat;
    right: 0;
  }
  #linha_list .slick-prev {
    background: url(../imgs/prev_arrow.png) no-repeat;
    left: 0;
    z-index: 6;
  }
}
#linha_list .accordion .accordion-section {
  margin-bottom: 10px;
}
#linha_list .accordion .accordion-section .accordion-title {
  cursor: pointer;
  background-color: #eee;
  padding: 18px 10px;
  font-weight: bold;
  position: relative;
}
#linha_list .accordion .accordion-section .accordion-title:after {
  content: "";
  background: url(../imgs/arrow_acc.png) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 21px;
}
#linha_list .accordion .accordion-section .accordion-title:hover {
  background-color: #ccc;
}
#linha_list .accordion .accordion-section .accordion-content {
  display: none;
  padding: 10px;
}
#linha_list .accordion .accordion-section .accordion-content.active {
  display: block;
}
#linha_list .accordion .accordion-section.active .accordion-title {
  cursor: pointer;
  background-color: #eee;
  padding: 18px 10px;
  font-weight: bold;
  position: relative;
}
#linha_list .accordion .accordion-section.active .accordion-title:after {
  transform: rotate(-180deg);
}
#linha_list .content {
  margin-bottom: 3rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0 2px 2px -2px, rgba(0, 0, 0, 0.05) 0 4px 4px -2px, rgba(0, 0, 0, 0.05) 0 8px 8px -2px, rgba(0, 0, 0, 0.05) 0 16px 16px -2px, rgba(0, 0, 0, 0.05) 0 32px 32px -2px;
  border-radius: 20px;
}
#linha_list .content .dt {
  display: grid;
  grid-template-columns: 200px 79%;
}
@media (max-width: 990px) {
  #linha_list .content .dt {
    display: block;
  }
}
#linha_list .content .dt h4 span {
  display: inline-block;
  margin-left: 2rem;
  font-size: 10px;
}
#linha_list .content .cc {
  display: grid;
  grid-template-columns: 276px 78%;
}
@media (max-width: 990px) {
  #linha_list .content .cc {
    display: block;
  }
}
#linha_list .content .cc .img_info {
  position: relative;
}
#linha_list .content .cc .img_info .img {
  width: 276px;
  height: 276px;
  border-radius: 20px;
  background-size: cover !important;
  display: block;
  position: relative;
}
#linha_list .content .cc .img_info .img::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../imgs/icon-search.svg), var(--d_azul);
  border-radius: 40px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 10px;
  position: absolute;
  right: 10px;
}
#linha_list .content .protecao {
  position: absolute;
  color: white;
  background: url(../imgs/protecao.svg) no-repeat 6px;
  font-weight: bold;
  top: 0;
  right: 0;
  padding: 10px 6px 10px 38px;
  border-radius: 0 20px 0 0;
  z-index: 1;
}
#linha_list .content .protecao.security-work {
  background-color: var(--d_verde);
}
#linha_list .content .protecao.visual-work {
  background-color: var(--l_azul);
}
#linha_list .content .protecao.useful-work {
  background-color: var(--d_azul);
}
#linha_list .content .protecao.classic-work {
  background-color: var(--vermelho);
}
#linha_list .content .protecao.fr {
  background-color: var(--laranja);
}
#linha_list .content .box {
  padding-inline: 17px;
  padding-block: 20px;
  position: relative;
  font-size: 12px;
}
#linha_list .content .box p {
  margin-bottom: 0;
}
#linha_list .content .box h3 {
  font-size: 32px;
  font-weight: bold;
}
#linha_list .content .box .detalhes {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  font-size: 14px;
}
#linha_list .content .box .detalhes p {
  line-height: 22px;
}
#linha_list .content .box .detalhes h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--cinza);
  margin-bottom: 20px;
}
#linha_list .content .box .cores {
  margin-top: 16px;
}
#linha_list .content .box .cores ul {
  -moz-columns: 4;
       columns: 4;
  padding-left: 0;
  margin-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
@media (min-width: 500px) and (max-width: 990px) {
  #linha_list .content .box .cores ul {
    -moz-columns: 3;
         columns: 3;
  }
}
@media (max-width: 490px) {
  #linha_list .content .box .cores ul {
    -moz-columns: 2;
         columns: 2;
  }
}
#linha_list .content .box .cores ul li {
  list-style: none;
  display: grid;
  gap: 4px;
  align-items: center;
  margin-bottom: 1rem;
  grid-template-columns: 30% 80%;
}
#linha_list .content .box .cores ul li span {
  display: block;
  font-size: 10px;
  margin: 0;
}
#linha_list .content .box .cores ul li span:first-child {
  margin-bottom: 3px;
  font-weight: 700;
}
#linha_list .content .box .cores h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--cinza);
}
#linha_list .content .box .cores h4 span {
  font-size: 8px;
  display: inline-block;
  margin: 0 0 0 10px;
  font-weight: 400;
}
#linha_list .content .box .cores_list .box {
  width: 33px;
  height: 33px;
  border: 1px solid #e0e0e0;
  padding-inline: initial;
  padding-block: initial;
}
#linha_list .content .box .cores_list .box img {
  width: 100%;
}
#linha_list .content .box .selo {
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  position: absolute;
  top: 20px;
  right: 40px;
}

#detalhes {
  position: relative;
  margin-top: 4rem;
}
#detalhes:after {
  content: "";
  background: url(../imgs/linha_gg.png) no-repeat;
  width: 249px;
  height: 833px;
  position: absolute;
  left: 0;
  top: -20%;
  z-index: -1;
}
@media (max-width: 990px) {
  #detalhes:after {
    display: none;
  }
}
#detalhes .box_content {
  background: #F1F3F5;
  padding: 4rem;
  border-radius: 40px;
}
@media (max-width: 990px) {
  #detalhes .box_content {
    padding: 1rem;
  }
}
#detalhes .box_detalhe {
  align-items: center;
  gap: 40px;
  margin-bottom: 4rem;
}
#detalhes .box_detalhe .img img {
  border-radius: 20px;
}
@media (max-width: 990px) {
  #detalhes .box_detalhe .img img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 990px) {
  #detalhes .box_detalhe .text h2 {
    font-size: 22px;
  }
}
#detalhes .box_detalhe:nth-child(even) .img {
  order: 2;
}
#detalhes .box_detalhe:last-child {
  margin-bottom: 0;
}

#acabamentos {
  background: #F1F3F5;
  margin-top: 0;
}
@media (max-width: 990px) {
  #acabamentos {
    overflow: hidden;
  }
}
#acabamentos .slider_acabamentos .box_tipo {
  background: white;
  border-radius: 20px;
  margin: 10px;
  padding-inline: 1rem;
  padding-block: 1rem;
  min-height: 200px;
  margin-bottom: 3rem;
}
#acabamentos .slider_acabamentos h3 {
  font-size: 16px;
  color: var(--d_azul-t);
  font-weight: 900;
  text-transform: none;
  margin-bottom: 1.7rem;
}
#acabamentos .slider_acabamentos h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto);
}
#acabamentos .slider_acabamentos .img {
  text-align: center;
  margin-bottom: 1rem;
}
#acabamentos .slider_acabamentos .img img {
  margin: 0 auto;
}
#acabamentos a.btn {
  width: 270px;
  padding: 1rem 1rem;
}

#certificacoes {
  position: relative;
  background: url(../imgs/linha_dupla.png) right top no-repeat;
  padding-top: 4rem;
  margin-top: 4rem;
}
#certificacoes .box_certificacoes-content {
  gap: 40px;
  margin-bottom: 4rem;
}
#certificacoes .box_certificacoes-content .img {
  width: 43%;
}
@media (max-width: 990px) {
  #certificacoes .box_certificacoes-content .img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#certificacoes .box_certificacoes-content .img img {
  width: 100%;
  border-radius: 15px;
}
#certificacoes .box_certificacoes-content .text {
  width: 60%;
}
@media (max-width: 990px) {
  #certificacoes .box_certificacoes-content .text {
    width: 100%;
  }
  #certificacoes .box_certificacoes-content .text h2 {
    font-size: 22px;
  }
  #certificacoes .box_certificacoes-content .text img {
    margin-right: 1rem;
  }
}
#certificacoes .box_certificacoes-content:last-child {
  margin-bottom: 0;
}
#certificacoes.interna {
  background: #F1F3F5;
  padding-bottom: 5rem;
}
#certificacoes.interna .box_certificacao {
  margin-top: 3rem;
}
#certificacoes.interna .box_certificacao .cc {
  background: var(--d_azul-t);
  padding: 2rem;
  border-radius: 20px;
  color: white;
}
#certificacoes.interna .box_certificacao .cc h3 {
  color: white;
  background: url(../imgs/check.png) left no-repeat;
  padding: 4px 0 4px 2.75rem;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 1.7rem;
}
#certificacoes.interna .box_certificacao .cc p {
  margin-bottom: 0;
}
#certificacoes.interna .slick-slide {
  margin: 0 10px;
}
#certificacoes.interna .slick-list {
  margin: 0 -10px;
}
#certificacoes.interna .selos_interna img {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 720px) {
  #certificacoes.interna .selos_interna img {
    width: 100%;
  }
}
#certificacoes.interna .selos_interna .slick-slide {
  margin: 0 6;
}
#certificacoes.interna .selos_interna .slick-list {
  margin: 0 -6;
}
#certificacoes.interna_sustetabilidade {
  position: relative;
}
#certificacoes.interna_sustetabilidade:after {
  content: "";
  background: url(../imgs/linha_sus2.svg) no-repeat;
  width: 189px;
  height: 521px;
  position: absolute;
  right: 0;
  top: -20%;
}
@media (max-width: 990px) {
  #certificacoes.interna_sustetabilidade:after {
    display: none;
  }
}

#quem {
  background: #F1F3F5;
  padding: 3rem 0;
}
#quem h2.title {
  margin-bottom: 1.2rem;
}
@media (max-width: 990px) {
  #quem h2.title {
    text-align: center;
    margin-top: 1.75rem;
  }
}
@media (max-width: 990px) {
  #quem .text {
    text-align: center;
  }
}
#quem .selos.home {
  margin-top: 1.75rem;
}
@media (max-width: 990px) {
  #quem .selos.home {
    text-align: center;
  }
}
#quem .selos.home img {
  margin-right: 1.75rem;
}
#quem .selos.home img:last-child {
  margin-right: 0;
}
#quem a {
  margin-top: 2rem;
}
@media (max-width: 990px) {
  #quem a {
    display: flex;
    justify-content: center;
    margin: 2rem auto 0;
  }
}

#intro_solucao {
  position: relative;
}
#intro_solucao:after {
  content: "";
  background: url(../imgs/linha_sol.png) no-repeat;
  width: 210px;
  height: 950px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 990px) {
  #intro_solucao:after {
    display: none;
  }
}

#intro_quem {
  position: relative;
  padding-bottom: 5rem;
}
#intro_quem:after {
  content: "";
  background: url(../imgs/linha_quem.svg) no-repeat;
  width: 210px;
  height: 950px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 990px) {
  #intro_quem:after {
    display: none;
  }
}
#intro_quem .box_quem {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
#intro_quem .box_quem .cc {
  background: #F1F3F5;
  padding: 2rem;
  border-radius: 20px;
  height: 264px;
}
#intro_quem .box_quem .cc h3 {
  color: var(--d_azul-t);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 1.7rem;
}
#intro_quem .slick-slide {
  margin: 0 10px;
}
#intro_quem .slick-list {
  margin: 0 -10px;
}

a.ll {
  width: 283px;
  margin-top: 3rem;
}

#contato_quem {
  margin-top: 4rem;
}
@media (max-width: 990px) {
  #contato_quem {
    margin-top: 2rem;
  }
}
#contato_quem.interna {
  margin-top: 0;
}
#contato_quem .box_contato {
  background: #F1F3F5 url(../imgs/bg_contato.svg) center no-repeat;
  background-size: cover;
  border-radius: 40px;
  padding-block: 3rem;
}
@media (max-width: 990px) {
  #contato_quem .box_contato {
    margin-bottom: 2rem;
  }
}
#contato_quem form {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 990px) {
  #contato_quem form {
    width: 90%;
  }
}
#contato_quem form input,
#contato_quem form textarea {
  width: 100%;
  margin-bottom: 1rem;
  border: 2px solid #999999;
  padding: 0.7rem;
  border-radius: 4px;
}
#contato_quem form input[type=submit],
#contato_quem form textarea[type=submit] {
  width: 240px;
  background-color: var(--d_azul-t);
  color: white;
  font-size: 14px;
  border-radius: 10px;
  border: 0;
  margin: 2rem auto 0;
  padding: 1.1rem;
}

#comprar {
  background: #F1F3F5;
  padding-block: 4rem;
  position: relative;
}
#comprar:after {
  content: "";
  background: url(../imgs/linha_comprar.png) no-repeat;
  width: 140px;
  height: 508px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 990px) {
  #comprar:after {
    display: none;
  }
}
#comprar .tab-menu {
  margin-top: 34px;
}
#comprar .tab-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 990px) {
  #comprar .tab-menu ul {
    display: block;
  }
}
#comprar .tab-menu ul li {
  max-width: 100%;
  text-align: center;
}
@media (max-width: 990px) {
  #comprar .tab-menu ul li {
    margin-bottom: 1rem;
  }
}
#comprar .tab-menu ul li a {
  background: white;
  color: var(--d_azul-t);
  display: inline-flex;
  border-radius: 20px;
  height: 177px;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-inline: 2rem;
  font-size: 22px;
  font-weight: 900;
}
@media (max-width: 990px) {
  #comprar .tab-menu ul li a {
    height: 170px;
  }
}
#comprar .tab-menu ul li a.active {
  background-color: var(--d_azul-t);
  color: white;
}
#comprar .tab-menu ul li a:hover {
  background-color: var(--d_azul-t);
  color: white;
}
#comprar .tab-menu ul li h3 {
  font-size: 22px;
  font-weight: 900;
}
#comprar .tab-menu ul li:first-child a::before {
  -webkit-mask-image: url(../imgs/Cedro_icon_01.svg);
          mask-image: url(../imgs/Cedro_icon_01.svg);
}
#comprar .tab-menu ul li:first-child a.active::before {
  background-color: white;
}
#comprar .tab-menu ul li:first-child a::before, #comprar .tab-menu ul li:nth-child(2) a::before, #comprar .tab-menu ul li:nth-child(3) a::before, #comprar .tab-menu ul li:nth-child(4) a::before {
  content: "";
  width: 28px;
  height: 32px;
  background-color: var(--d_azul-t);
  margin-bottom: 1rem;
}
#comprar .tab-menu ul li:first-child a.active::before, #comprar .tab-menu ul li:first-child a:hover::before, #comprar .tab-menu ul li:nth-child(2) a.active::before, #comprar .tab-menu ul li:nth-child(2) a:hover::before, #comprar .tab-menu ul li:nth-child(3) a.active::before, #comprar .tab-menu ul li:nth-child(3) a:hover::before, #comprar .tab-menu ul li:nth-child(4) a.active::before, #comprar .tab-menu ul li:nth-child(4) a:hover::before {
  background-color: white;
}
#comprar .tab-menu ul li:nth-child(2) a::before {
  -webkit-mask-image: url(../imgs/Cedro_icon_02.svg);
          mask-image: url(../imgs/Cedro_icon_02.svg);
}
#comprar .tab-menu ul li:nth-child(3) a::before {
  -webkit-mask-image: url(../imgs/Cedro_icon_03.svg);
          mask-image: url(../imgs/Cedro_icon_03.svg);
}
#comprar .tab-menu ul li:nth-child(4) a::before {
  -webkit-mask-image: url(../imgs/Cedro_icon_04.svg);
          mask-image: url(../imgs/Cedro_icon_04.svg);
}
#comprar .tab-box {
  display: none;
}
#comprar .tab-teaser {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
#comprar .tab-main-box {
  background: var(--d_azul-t);
  padding: 3rem 4rem;
  border-radius: 20px;
  text-align: center;
  color: white;
}
#comprar .tab-main-box select {
  padding: 10px;
}
@media (max-width: 990px) {
  #comprar .tab-main-box {
    padding: 3rem 1rem;
  }
}
#comprar .tab-main-box h3 {
  color: white;
  font-size: 30px;
  font-weight: 900;
}

.container_distribuidores_item {
  background: white;
  color: #03447d;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem auto 0;
}
.container_distribuidores_item h4 {
  font-size: 24px;
  font-weight: 700;
}

#solucoes {
  background: #F1F3F5;
  padding: 3rem 0 0;
}
#solucoes h2.title {
  margin-bottom: 1.2rem;
}
#solucoes a.btn {
  margin-top: 1.7rem;
}
#solucoes .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 990px) {
  #solucoes .list {
    margin-top: 2rem;
  }
}
#solucoes .list div {
  background-repeat: no-repeat;
  background-position: center top;
  width: 32%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 990px) {
  #solucoes .list div {
    width: 100%;
  }
}
#solucoes .list div:last-child {
  width: 36%;
}
@media (max-width: 880px) {
  #solucoes .list div:last-child {
    width: 100%;
  }
}
#solucoes .list div h3 {
  color: var(--d_azul-t);
  padding-top: 3rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

#items_solucoes .box_detalhe {
  background: #F1F3F5;
  padding: 4rem;
  border-radius: 40px;
  align-items: center;
  gap: 40px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  #items_solucoes .box_detalhe {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
#items_solucoes .box_detalhe .img img {
  border-radius: 20px;
}
@media (max-width: 990px) {
  #items_solucoes .box_detalhe .img img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#items_solucoes .box_detalhe:nth-child(even) .img {
  order: 2;
}
#items_solucoes .box_detalhe .text img {
  width: 40px;
}
@media (max-width: 990px) {
  #items_solucoes .box_detalhe .text h2 {
    font-size: 22px;
  }
  #items_solucoes .box_detalhe .text img {
    width: 40px;
  }
}
#items_solucoes .box_detalhe:last-child {
  margin-bottom: 0;
}

#sustentabilidade {
  position: relative;
  padding: 3rem 0;
}
#sustentabilidade:after {
  content: "";
  background: url(../imgs/linha_sus.png) no-repeat;
  width: 343px;
  height: 413px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 990px) {
  #sustentabilidade:after {
    display: none;
  }
}
@media (max-width: 990px) {
  #sustentabilidade h2 {
    margin-top: 2rem;
  }
}
#sustentabilidade .container {
  position: relative;
  z-index: 2;
}
#sustentabilidade a.btn {
  margin-top: 1rem;
}
#sustentabilidade .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 990px) {
  #sustentabilidade .list {
    justify-content: space-between;
    padding: 0 1rem;
    text-align: left;
    margin-top: 2rem;
    display: block;
  }
}
#sustentabilidade .list div {
  background-repeat: no-repeat;
  background-position: left;
  width: 49%;
  margin-bottom: 1rem;
  padding: 0rem 0 0 2rem;
  display: flex;
  align-items: center;
  min-height: 30px;
  background-size: 24px;
}
@media (max-width: 990px) {
  #sustentabilidade .list div {
    width: 45%;
  }
}
#sustentabilidade .list div:last-child {
  width: 36%;
}
@media (max-width: 990px) {
  #sustentabilidade .list div:last-child {
    width: 45%;
  }
}
#sustentabilidade .list div h3 {
  color: var(--d_azul-t);
  padding-left: 3rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

#blocos_sustentabilidade .box_blocos {
  flex-wrap: wrap;
  justify-content: space-between;
}
#blocos_sustentabilidade .cc {
  width: 49%;
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 990px) {
  #blocos_sustentabilidade .cc {
    width: 100%;
    display: block;
  }
}
#blocos_sustentabilidade .cc .bg {
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 20px 20px 0 0;
}
#blocos_sustentabilidade .cc .img img {
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 990px) {
  #blocos_sustentabilidade .cc .img img {
    width: 100%;
  }
}
#blocos_sustentabilidade .cc .text {
  background: #F1F3F5;
  padding-left: 20px;
  padding-block-start: 1rem;
  border-radius: 0 40px 40px 0px;
  font-size: 13px;
  padding-right: 20px;
}
@media (max-width: 990px) {
  #blocos_sustentabilidade .cc .text {
    border-radius: 0 0 20px 20px;
    padding-bottom: 2rem;
  }
}
#blocos_sustentabilidade .cc .text img {
  margin-bottom: 1rem;
  width: 40px;
}
#blocos_sustentabilidade .cc h3 {
  color: var(--d_azul-t);
  font-size: 20px;
  font-weight: bold;
}

.hide-c,
.hide-c2 {
  display: none;
}

#video .content_video.documento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 990px) {
  #video .content_video.documento {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  #video .content_video.documento {
    grid-template-columns: 1fr;
  }
}
#video .content_video {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
#video .content_video.documento {
  justify-content: flex-start;
  margin-bottom: 4rem;
}
#video .content_video.documento .box_documento {
  height: auto;
}
#video .content_video .box_video,
#video .content_video .box_documento {
  width: 32%;
  background: #F1F3F5;
  border-radius: 0 0 20px 20px;
  padding: 0 0 10px;
  height: 300px;
}
@media (max-width: 990px) {
  #video .content_video .box_video,
  #video .content_video .box_documento {
    width: 47%;
  }
}
@media (max-width: 375px) {
  #video .content_video .box_video,
  #video .content_video .box_documento {
    width: 100%;
  }
}
#video .content_video .box_video .play,
#video .content_video .box_documento .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -80%);
}
#video .content_video .box_video h4,
#video .content_video .box_documento h4 {
  font-size: 16px;
  color: var(--d_azul-t);
  font-weight: bold;
  padding-left: 1rem;
  padding-top: 1rem;
}
#video .content_video .box_documento {
  width: 100%;
  height: 424px !important;
  border-radius: 20px;
}
#video .content_video .box_documento .img {
  background-size: cover;
  height: 286px;
  background-repeat: no-repeat !important;
}
@media (max-width: 990px) {
  #video .content_video .box_documento {
    width: 100%;
  }
  #video .content_video .box_documento .img {
    background-size: cover;
    height: 300px;
    background-position: center top;
  }
}
@media (max-width: 375px) {
  #video .content_video .box_documento {
    width: 100%;
  }
}
#video .content_video .box_documento img {
  border-radius: 20px 20px 0 0;
}
#video .content_video .box_documento h4 {
  margin-bottom: 0;
}
#video .content_video .box_documento span {
  display: block;
}
#video .content_video .box_documento span.ano {
  color: #999999;
  padding-left: 1rem;
  font-weight: 900;
}
#video .content_video .box_documento span.download {
  transition: all 0.4s ease;
  background: var(--d_azul-t) url(../imgs/down.png) no-repeat 87%;
  color: white;
  font-weight: 900;
  font-size: 14px;
  border-radius: 5px;
  width: 150px;
  padding-block: 0.45rem;
  padding-inline: 1.75rem;
  margin: 0.75rem auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}
#video .content_video .box_documento span.download:hover {
  background: var(--l_azul) url(../imgs/down.png) no-repeat 87%;
}
#video .content_video .box_documento:hover span.download {
  background: var(--l_azul) url(../imgs/down.png) no-repeat 87%;
}

.line {
  display: block;
  height: 1px;
  background: var(--d_azul-t);
}

#videos hr {
  margin-block: 3rem;
  height: 1px;
  background-color: var(--d_azul-t);
  opacity: 1;
}
@media (max-width: 990px) {
  #videos h2 {
    margin-top: 2rem;
  }
}
#videos .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#videos .items .video {
  width: 49%;
}
@media (max-width: 990px) {
  #videos .items .video {
    width: 100%;
    margin-top: 1rem;
  }
}
#videos .items .video:after {
  content: "";
  background: url(../imgs/play.svg) no-repeat;
  width: 78px;
  height: 78px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#videos .items .video img {
  width: 100%;
}

#blog.blog_lista {
  background: url(../imgs/bg_bloglist.jpg) center no-repeat;
  background-size: cover;
}
#blog.blog_lista h2 {
  color: white;
  font-size: 30px;
  margin-block: 3rem;
  font-weight: 900;
}
#blog.blog_lista .box_blog {
  gap: 20px;
}
#blog.blog_lista .box_blog .img {
  height: 300px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
#blog.blog_lista .box {
  width: 33%;
  border-radius: 20px;
  background-color: white;
  transition: all 0.4s ease-in;
}
@media (max-width: 990px) {
  #blog.blog_lista .box {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#blog.blog_lista .box .text {
  padding: 2rem;
}
#blog.blog_lista .box .text span {
  display: block;
}
#blog.blog_lista .box .text span.data {
  color: var(--cinza);
  font-size: 16px;
  font-weight: 600;
}
#blog.blog_lista .box .text h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--d_azul-t);
  margin-block: 0.75rem;
}
#blog.blog_lista .box .text .leia {
  color: var(--d_azul-t);
  font-weight: 900;
  transition: color 0.4s ease;
}
#blog.blog_lista .box:hover {
  transform: scale(1.06);
  transition: all 0.4s ease-in;
}
#blog.blog_lista .box:hover .leia {
  color: var(--l_azul);
}
#blog.blog_featured {
  background: url(../imgs/bg_blog.png) center top no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 10rem 0 10rem;
}
@media (max-width: 990px) {
  #blog.blog_featured {
    padding: 2rem 0 2rem;
  }
}
#blog.blog_featured.home {
  background: #f1f3f5;
  color: var(--cinza);
  padding: 0 0 5rem;
  height: auto;
}
#blog.blog_featured.home:after {
  content: "";
  background: url(../imgs/linha_blog-home.png) no-repeat;
  width: 933px;
  height: 233px;
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: -1;
}
@media (max-width: 990px) {
  #blog.blog_featured.home:after {
    display: none;
  }
}
#blog.blog_featured.home h2 {
  color: var(--d_azul-t);
}
@media (max-width: 990px) {
  #blog.blog_featured.home h2 {
    font-size: 24px;
  }
}
#blog.blog_featured.home .text {
  color: var(--cinza);
}
#blog.blog_featured.home .text h2 {
  color: var(--d_azul-t);
}
@media (max-width: 990px) {
  #blog.blog_featured.home .featured .img {
    width: 100%;
  }
}
#blog.blog_featured.home .featured .text,
#blog.blog_featured.home .featured h2 {
  color: white;
}
#blog.blog_featured h2 {
  color: white;
  font-weight: 900;
  font-size: 40px;
}
#blog.blog_featured .text {
  background-color: #235A9B;
  color: white;
  position: absolute;
  bottom: 10%;
  width: 80%;
  right: 0;
  padding: 2rem;
  border-radius: 20px 0 0 20px;
}
#blog.blog_featured .text h2 {
  color: white;
  font-weight: 900;
  font-size: 22px;
}
#blog.blog_featured .featured.box_post {
  width: 100%;
  position: relative;
}
#blog.blog_featured .featured .img {
  height: 585px;
  width: 572px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 990px) {
  #blog.blog_featured .featured .img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#blog .grid .box_post {
  margin-bottom: 1.2rem;
  display: block;
}
#blog .grid .box_post:hover .img {
  background-size: 180%;
}
#blog .grid .img {
  width: 100%;
  height: 181px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  margin-right: 1rem;
  transition: all 0.4s ease;
  background-size: 130%;
}
#blog .grid .text {
  background: transparent;
  position: initial;
  padding: 0;
  width: 100%;
}
#blog .grid .text h2 {
  font-size: 16px;
  margin-block: 0.75rem;
}
#blog .grid .text .data {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.75rem;
  display: block;
}
#blog .grid .text p {
  margin: 0;
}

#resultado.blog_others:after {
  display: none;
}

.page_result {
  padding-top: 6rem;
}
.page_result:after {
  content: "";
  background: url(../imgs/linha_blog.svg) no-repeat;
  width: 296px;
  height: 190px;
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
}

.blog_others {
  padding-top: 5rem;
  position: relative;
}
.blog_others:after {
  content: "";
  background: url(../imgs/linha_blog.svg) no-repeat;
  width: 296px;
  height: 190px;
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
}
.blog_others .box_post {
  margin-bottom: 2rem;
}
.blog_others .box_post .img {
  width: 38%;
  height: 231px;
  border-radius: 20px;
  background-size: cover;
  transition: all 0.4s ease;
}
@media (max-width: 990px) {
  .blog_others .box_post .img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.blog_others .box_post .text {
  background: transparent;
  position: initial;
  padding: 0;
  width: 58%;
}
@media (max-width: 990px) {
  .blog_others .box_post .text {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.blog_others .box_post .text h2 {
  font-size: 16px;
  margin-block: 0.75rem;
  color: var(--d_azul-t);
  font-weight: bold;
}
.blog_others .box_post .text .data {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.75rem;
  display: block;
  color: #343A40;
}
.blog_others .box_post .text p {
  margin: 0;
}
.blog_others .box_post:hover .img {
  transform: scale(1.02);
}

.bar {
  height: 100%;
  border-left: 1px solid var(--d_azul-t);
  padding-left: 1rem;
}
@media (max-width: 990px) {
  .bar {
    border: 0;
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
.bar form {
  position: relative;
}
.bar form input {
  width: 100%;
  border: 1px solid var(--d_azul-t);
  border-radius: 4px;
  padding: 0.7rem;
}
.bar .cartela {
  margin-top: 3rem;
}
@media (max-width: 990px) {
  .bar .cartela {
    padding: 0 4rem;
  }
}
.bar .cartela .box {
  background: #F1F3F5;
  border-radius: 10px;
  margin-inline: 1rem;
}
.bar .cartela .box .text {
  color: #999999;
  font-weight: bold;
  font-size: 12px;
  padding: 0.7rem;
}
.bar .cartela .box .text p {
  margin-bottom: 0;
}
.bar .cartela .box .text strong {
  color: var(--cinza);
}

.banner_blog {
  background-size: cover;
  background-position: center;
  height: 380px;
}

.content_post {
  position: relative;
}
.content_post:after {
  content: "";
  background: url(../imgs/linha_post.png) no-repeat;
  width: 140px;
  height: 335px;
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
}
.content_post .content .data {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.content_post .content h2 {
  color: var(--d_azul-t);
  font-size: 30px;
  font-weight: 900;
  margin-block: 0.7rem;
}

@media (max-width: 990px) {
  #cartela h2 {
    margin-top: 2rem;
  }
}

#contato {
  padding: 4rem 0;
  background: #133656;
  border-top: 4px solid #11A7AB;
}
#contato h2 {
  font-size: 60px;
}
@media (max-width: 880px) {
  #contato h2 {
    font-size: 48px;
  }
}
#contato h2 strong {
  color: #11A7AB;
}
#contato p {
  font-size: 20px;
  font-weight: 100;
  text-align: center;
}
@media (max-width: 880px) {
  #contato p {
    font-size: 16px;
  }
}
#contato form {
  font-family: "Fira Sans", sans-serif;
}
#contato form ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #11A7AB;
  opacity: 1;
  /* Firefox */
}
#contato form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #11A7AB;
  opacity: 1;
  /* Firefox */
}
#contato form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #11A7AB;
}
#contato form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #11A7AB;
}
#contato form input {
  width: 100%;
  background: white;
  border: 0;
  border-radius: 20px;
  color: white;
  padding: 12px 14px;
  font-size: 16px;
  margin-bottom: 1rem;
}
#contato form input[type=submit] {
  background: #11A7AB;
  border-radius: 5px;
  width: 150px;
  font-size: 22px;
  color: white;
  font-weight: 100;
  border-radius: 100px;
  margin-top: 1rem;
  font-family: "Bebas Neue", cursive;
}
#contato form textarea {
  width: 100%;
  border-radius: 20px;
  padding: 12px 14px;
}
#contato form .ff {
  width: 48%;
}
@media (max-width: 880px) {
  #contato form .ff {
    width: 100%;
  }
}
#contato form .foo {
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  background-color: var(--cinza);
  color: white;
  padding-block: 3rem;
}
footer .row {
  justify-content: space-evenly;
}
footer a {
  color: white;
}
footer .marcas .social a {
  margin-right: 1rem;
}
footer .marcas .social a:last-child {
  margin-right: 0;
}
footer .menu-mapa-do-site-container {
  -moz-columns: 2;
       columns: 2;
}

.wpcf7-not-valid-tip {
  color: #F2C479;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-size: 14px;
  margin: -7px 0 0 0;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  font-size: 13px;
  border: 1px solid #F2C479;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  display: inline-block;
  position: absolute;
  top: -9px;
  right: 0;
  background: #de3e45;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 5px;
  border-radius: 6px;
}

div.wpcf7-response-output {
  width: 100%;
  margin: 5px !important;
  padding: 20px !important;
  border-radius: 10px;
  border: none !important;
  color: #fff;
  background: #f5c003;
  display: block;
  text-align: center;
}

form.sent div.wpcf7-response-output {
  background: #43a345 !important;
}

footer .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  footer .grid {
    display: block;
  }
  footer .grid ul {
    margin-bottom: 0;
  }
}

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

@media (min-width: 991px) {
  .hide_desk {
    display: none !important;
  }
}
@media (min-width: 880px) {
  .pp {
    display: flex;
  }
}
@media (max-width: 990px) {
  .hide_mob {
    display: none !important;
  }
  #detalhes .box_detalhe {
    flex-wrap: wrap;
  }
  #items_solucoes .box_detalhe .text {
    width: 80%;
  }
}
.accordion {
  width: 100%;
  margin: 0 auto 2rem !important;
  --bs-accordion-border-color: transparent;
}
.accordion h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  color: #03447d;
}
.accordion-body {
  padding: 10px;
  display: none;
  background-color: var(--d_azul-t);
  color: white;
}
.accordion-item {
  margin-bottom: 1rem;
}
.accordion-header {
  padding: 14px;
  border: 1px solid var(--d_azul-t);
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}
.accordion-header img {
  position: absolute;
  left: 20px;
  width: 30px;
}
.accordion-header svg {
  position: absolute;
  right: 20px;
  top: 16px;
}
.accordion-header h3 {
  color: var(--d_azul-t);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .accordion-header h3 {
    padding: 0 2rem;
    font-size: 16px;
  }
}
.accordion-header.active, .accordion-header:hover {
  background-color: var(--d_azul-t);
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid white;
  transition: all 500ms ease;
}
.accordion-header.active h3, .accordion-header:hover h3 {
  color: white;
}
.accordion-header.active img,
.accordion-header.active svg path, .accordion-header:hover img,
.accordion-header:hover svg path {
  filter: brightness(0) invert(1);
}
.accordion-header.active svg {
  transform: rotate(180deg);
}

#comprar .info1,
#comprar .info2,
#comprar .info3,
#comprar .info4 {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  /* gap: 2rem; */
  margin-top: 3rem;
  justify-content: space-between;
}
@media (max-width: 660px) {
  #comprar .info1,
  #comprar .info2,
  #comprar .info3,
  #comprar .info4 {
    grid-template-columns: 1fr;
  }
}
#comprar .info1 div,
#comprar .info2 div,
#comprar .info3 div,
#comprar .info4 div {
  background: white;
  border-radius: 8px;
  color: var(--d_azul);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}
#comprar .info1 div h3,
#comprar .info2 div h3,
#comprar .info3 div h3,
#comprar .info4 div h3 {
  color: var(--d_azul);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
#comprar .info1 div a,
#comprar .info2 div a,
#comprar .info3 div a,
#comprar .info4 div a {
  color: var(--d_azul);
  display: block;
}
#comprar .info1 div .email,
#comprar .info2 div .email,
#comprar .info3 div .email,
#comprar .info4 div .email {
  margin-bottom: 0.5rem;
}
#comprar .info1 div .whatsapp-link,
#comprar .info2 div .whatsapp-link,
#comprar .info3 div .whatsapp-link,
#comprar .info4 div .whatsapp-link {
  margin-top: 0.5rem;
}
#comprar .select2-container--default .select2-selection--single {
  height: 40px;
  display: flex;
  align-items: center;
}
#comprar .select2-container--default .select2-selection--single .select2-selection__clear {
  position: absolute;
  right: 0;
  top: 2px;
}

.tab-box .whatsapp-link {
  position: relative;
  padding-left: 24px;
  color: var(--d_azul);
}
.tab-box .whatsapp-link:after {
  content: "";
  background: url(../imgs/whats.svg) no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
}
.tab-box .telefone {
  position: relative;
  padding-left: 24px;
  color: var(--d_azul);
}
.tab-box .telefone:after {
  content: "";
  background: url(../imgs/phone.svg) no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
}

.info3 p.nome {
  display: none;
}

#tab-4 .carregando {
  display: none;
}
#tab-4 .info4 .representante {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}
#tab-4 .info4 .representante .representante_foto {
  background-size: cover !important;
  height: 180px;
  margin-bottom: 0;
}
#tab-4 .info4 .representante .representante_container {
  margin-bottom: 0;
}
#tab-4 .info4 .nome {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
#tab-4 .info4 .estado {
  color: #5580B3;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#tab-4 .info4 .estado::before {
  background: url(../imgs/location-dot.svg);
  background-size: cover;
  content: "";
  display: block;
  height: 16px;
  width: 12px;
  margin-right: 5px;
}
#tab-4 .info4 .cidade {
  color: #343A40;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
#tab-4 .info4 .telefone {
  color: #02447D;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 0;
}
#tab-4 .info4 .telefone::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #02447D;
  margin: 20px auto;
}
#tab-4 .info4 .telefone::after {
  display: none;
}
#tab-4 .info4 .emailLink {
  color: #fff;
  margin: 25px auto 0;
}
#tab-4 .info4 .emailLink:hover {
  color: var(--d_azul-t);
}

/* ACEITAR COOKIES
================================================== */
.aceitar_cookies {
  display: none;
}

.aceitar_cookies_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 25px 80px;
  box-shadow: 0 24px 81px rgba(0, 0, 0, 0.4), 0 9px 32px rgba(0, 0, 0, 0.2) !important;
  position: fixed;
  bottom: 0;
  z-index: 99999999999;
  color: #03447d;
}

.aceitar_cookies p {
  width: calc(100% - 160px);
}

.aceitar_cookies a {
  color: var(--color8);
  text-decoration: underline;
}

.aceitar_cookies_bt {
  background-color: #03447d;
  font-weight: 900;
  padding: 10px 20px;
  color: white !important;
  text-transform: uppercase;
  border: 2px solid var(--color8);
  transition: all 0.4s ease;
  margin: 0 auto;
  justify-content: center;
  text-decoration: none !important;
}/*# sourceMappingURL=main.css.map */