@charset "UTF-8";
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-ExtraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: outfit;
  src: url("../fonts/outfit/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@keyframes circle_animate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(3600deg);
  }
}
input[type=submit], input[type=radio], input[type=checkbox] {
  cursor: pointer;
}

* {
  outline: none !important;
}

select,
input,
textarea {
  -webkit-appearance: none;
}

*[data-load=on] {
  color: transparent !important;
  pointer-events: none;
  position: sticky;
  filter: opacity(0.9);
  transition: all 0.3s;
}
*[data-load=on]:before {
  content: "";
  position: absolute;
  background: url(../img/loading.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: rotate_load;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
*[data-load=on]:after {
  content: "Carregando";
  position: absolute;
  color: white;
  font-family: ubuntu;
  font-size: 10px;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: text_load;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes rotate_load {
  100% {
    transform: translate(-50%, -50%) rotate(1080deg);
  }
}
@keyframes text_load {
  0% {
    content: "Carregando";
  }
  25% {
    content: "Carregando.";
  }
  50% {
    content: "Carregando..";
  }
  75% {
    content: "Carregando...";
  }
  100% {
    content: "Carregando";
  }
}
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s;
}
header[scroll=true] {
  background: white;
  box-shadow: 0 -14px 20px black;
}
header[scroll=true]:before {
  width: 100%;
  left: 0;
  bottom: 0;
  border-radius: 0;
}
header[scroll=true] > div {
  height: 75px;
}
header[scroll=true] > div a.logo {
  width: calc(195px * 0.6);
  height: calc(100px * 0.6);
}
header[scroll=true] > div > div {
  padding: 0;
}
header[scroll=true] > div > div .paginas a {
  color: #2E4B2F;
  padding: 10px 0;
}
header[scroll=true] > div > div .nossos_telefones > button {
  color: #2C872F;
}
header[scroll=true] > div > div .nossos_telefones > button svg path {
  fill: #2C872F;
}
header[scroll=true] > div > div .nossos_telefones > button svg #borda {
  stroke: #2C872F;
}
header[scroll=true] > div button.menu .span_1 {
  background: #2C872F !important;
}
header[scroll=true] > div button.menu .span_2 {
  background: #2C872F !important;
}
header[scroll=true] > div button.menu .span_3 {
  background: #2C872F !important;
}
header[data-open=true] button.menu * {
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
header[data-open=true] button.menu .span_1 {
  transition: all 0.3s;
  animation-name: open_menu_1;
  right: 50%;
  transform: translate(50%, 0) rotate(45deg);
  width: 35px;
  height: 2px;
  background: #2C872F;
}
header[data-open=true] button.menu .span_2 {
  transition: all 0.3s;
  animation-name: open_menu_2;
  opacity: 0;
}
header[data-open=true] button.menu .span_3 {
  transition: all 0.3s;
  animation-name: open_menu_3;
  right: 50%;
  transform: translate(50%, 0) rotate(-45deg);
  width: 35px;
  height: 2px;
  background: #2C872F;
}
header[data-open=false] button.menu * {
  animation-duration: 1s;
  animation-iteration-count: 1;
}
header[data-open=false] button.menu .span_1 {
  animation-name: close_menu_1;
  right: 0;
  transform: translate(0, -10px);
  width: 100%;
}
header[data-open=false] button.menu .span_2 {
  animation-name: close_menu_2;
  right: 0;
  transform: translate(0, 0);
  width: 100%;
  opacity: 1;
}
header[data-open=false] button.menu .span_3 {
  animation-name: close_menu_3;
  right: 0;
  transform: translate(0, 11px);
  width: 100%;
}
header:before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  background: white;
  border-radius: calc(440px / 2);
  bottom: -16px;
  left: calc(50% - 722px);
  transition: all 0.2s;
}
header > div {
  position: relative;
  width: 1200px;
  height: 140px;
  margin: 0 auto;
  transition: all 0.3s;
  z-index: 1;
}
header > div a.logo {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 195px;
  height: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
header > div > div {
  position: relative;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  margin: 0 0 0 auto;
  height: 100%;
  padding: 40px 0 0;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.3s;
}
header > div > div .paginas {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 35px;
  padding: 0 42px 0 0;
}
header > div > div .paginas a {
  position: relative;
  font-family: outfit;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  padding: 17px 0;
  transition: all 0.3s;
}
header > div > div .paginas a:hover {
  color: #ef8800;
}
header > div > div .paginas a.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #EF8800;
  width: 44px;
  height: 1px;
}
header > div > div a.rastreie {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 198px;
  height: 40px;
  border-radius: 6px;
  background: #EF8800;
  text-transform: uppercase;
  font-family: outfit;
  font-weight: bold;
  font-size: 12px;
  color: white;
  cursor: pointer;
}
header > div > div .nossos_telefones {
  position: relative;
  margin: 0 36px 0 0;
}
header > div > div .nossos_telefones[active=false] div#telefones {
  opacity: 0;
  pointer-events: none;
  bottom: 0;
}
header > div > div .nossos_telefones > button {
  position: relative;
  border: none;
  background: none;
  width: 105px;
  height: 40px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 0 45px;
  font-family: outfit;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 1px;
  color: #A6D8AA;
  text-align: left;
  transition: all 0.3s;
}
header > div > div .nossos_telefones > button svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header > div > div .nossos_telefones div#telefones {
  position: absolute;
  left: 0;
  bottom: -23px;
  transform: translateY(100%);
  width: 340px;
  border-radius: 10px;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  padding: 6px 33px 25px;
  background: white;
  transition: all 0.3s;
}
header > div > div .nossos_telefones div#telefones .item {
  border-bottom: 1px solid #D8D8D8;
  padding: 22px 0 15px;
  transition: all 0.3s;
}
header > div > div .nossos_telefones div#telefones .item:last-child {
  border-bottom: none;
}
header > div > div .nossos_telefones div#telefones .item h3 {
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #363636;
  margin: 0 0 6px;
}
header > div > div .nossos_telefones div#telefones .item p {
  font-family: outfit;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #242424;
  margin: 0 0 2px;
}
header > div > div .nossos_telefones div#telefones .item a {
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-family: outfit;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #77A17A;
  margin: 0 0 2px;
  padding: 0 25px 0 0;
  background-image: url(./../img/header/header_wpp.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
header > div > div .rastreie_content {
  display: none;
  width: 100%;
  position: relative;
}
header > div > div .rastreie_content > div {
  width: 310px;
  margin: 0 auto;
  padding: 40px 0 15px;
  border-top: 1px solid #CCCCCC;
}
header > div > div .rastreie_content > div h3 {
  position: relative;
  padding: 0 0 0 55px;
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #0D0D0D;
  margin: 0 0 33px;
}
header > div > div .rastreie_content > div h3 svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header > div > div .rastreie_content > div form {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header > div > div .rastreie_content > div form input {
  border: none;
  border-bottom: 1px solid #707070;
  background: transparent;
  width: 170px;
  height: 40px;
  font-family: outfit;
  font-size: 16px;
  color: #8D8D8D;
}
header > div > div .rastreie_content > div form input::placeholder {
  color: #8D8D8D;
}
header > div > div .rastreie_content > div form button {
  border: none;
  background: #EF8800;
  width: 125px;
  height: 40px;
  text-transform: uppercase;
  font-family: outfit;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 2px;
  color: white;
  border-radius: 6px;
}
header > div button.menu {
  position: absolute;
  display: none;
  width: 53px;
  height: 50px;
  border: none;
  background: transparent;
  padding: 0;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes open_menu_1 {
  0% {
    right: 0;
    transform: translate(0, -10px);
    width: 100%;
    height: 1px;
    background: white;
  }
  25% {
    right: 50%;
    transform: translate(50%, -10px);
  }
  50% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  75% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  100% {
    right: 50%;
    transform: translate(50%, 0) rotate(45deg);
    width: 35px;
    height: 2px;
    background: #2C872F;
  }
}
@keyframes open_menu_2 {
  0% {
    right: 0;
    transform: translate(0, 0);
    width: 100%;
    opacity: 1;
  }
  25% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
  }
  50% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  75% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  100% {
    opacity: 0;
  }
}
@keyframes open_menu_3 {
  0% {
    right: 0;
    transform: translate(0, 11px);
    width: 100%;
    height: 1px;
    background: white;
  }
  25% {
    right: 50%;
    transform: translate(50%, 11px);
  }
  50% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  75% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  100% {
    right: 50%;
    transform: translate(50%, 0) rotate(-45deg);
    width: 35px;
    height: 2px;
    background: #2C872F;
  }
}
@keyframes close_menu_1 {
  0% {
    right: 50%;
    transform: translate(50%, 0) rotate(45deg);
    width: 35px;
    height: 2px;
    background: #2C872F;
  }
  25% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  75% {
    right: 50%;
    transform: translate(50%, 0);
    width: 100%;
  }
  50% {
    right: 50%;
    transform: translate(50%, 0);
  }
  100% {
    right: 0;
    transform: translate(0, -10px);
    width: 100%;
    height: 1px;
    background: white;
  }
}
@keyframes close_menu_2 {
  0% {
    opacity: 0;
  }
  25% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  50% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  75% {
    top: 50%;
    right: 50%;
    transform: translate(50%, 0);
    width: 100%;
  }
  100% {
    right: 0;
    transform: translate(0, 0);
    width: 100%;
    opacity: 1;
  }
}
@keyframes close_menu_3 {
  0% {
    right: 50%;
    transform: translate(50%, 0) rotate(-45deg);
    width: 35px;
    height: 2px;
    background: #2C872F;
  }
  25% {
    right: 50%;
    transform: translate(50%, 0);
    width: 35px;
  }
  50% {
    right: 50%;
    transform: translate(50%, 0);
    width: 100%;
  }
  75% {
    right: 50%;
    transform: translate(50%, 0);
    width: 100%;
  }
  100% {
    right: 0;
    transform: translate(0, 11px);
    width: 100%;
    height: 1px;
    background: white;
  }
}
header > div button.menu .span_1 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-10px);
  width: 100%;
  height: 1px;
  background: white;
}
header > div button.menu .span_2 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: white;
}
header > div button.menu .span_3 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(11px);
  width: 100%;
  height: 1px;
  background: white;
}
@media (max-width: 1250px) {
  header:before {
    left: -90px;
  }
  header > div {
    width: 100%;
    padding: 0 35px;
  }
  header > div a.logo {
    left: 35px;
  }
  header > div > div .paginas {
    gap: 20px;
    padding: 0 15px 0 0;
  }
  header > div > div .nossos_telefones {
    margin: 0 20px 0 0;
  }
  header > div > div a.rastreie {
    width: 200px;
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1100px) {
  header[scroll=true][data-open=true] > div > div {
    padding: 70px 0 30px;
  }
  header[data-open=false] > div > div, header[data-open=initial] > div > div {
    opacity: 0;
    pointer-events: none;
  }
  header[data-open=false] > div > div:before, header[data-open=initial] > div > div:before {
    right: -50px;
    bottom: 50px;
    border-radius: 100px 0 100px 100px;
  }
  header[data-open=false] > div > div .paginas a, header[data-open=initial] > div > div .paginas a {
    transform: translateX(-50%);
  }
  header[data-open=false] > div > div .paginas a:nth-child(2n), header[data-open=initial] > div > div .paginas a:nth-child(2n) {
    transform: translateX(50%);
  }
  header > div a.logo {
    z-index: 1;
  }
  header > div > div {
    position: fixed;
    display: block;
    right: 0;
    top: 0;
    padding: 120px 0 50px;
    width: 100%;
    overflow: auto;
    background: white;
  }
  header > div > div:before {
    display: none;
  }
  header > div > div .paginas {
    padding: 0 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  header > div > div .paginas a {
    color: #294129;
    transition: all 0.3s;
    padding: 10px 10px !important;
    font-size: 20px;
  }
  header > div > div .paginas a.active:before {
    display: none;
  }
  header > div > div .nossos_telefones {
    width: 310px;
    margin: 0 auto;
  }
  header > div > div .nossos_telefones[active=false] div#telefones {
    display: none;
  }
  header > div > div .nossos_telefones > button {
    position: relative;
    border-top: 1px solid #CCCCCC;
    color: #4E4E4E !important;
    padding: 0;
    width: 100%;
    height: 58px;
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  header > div > div .nossos_telefones > button:before {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url(./../img/select_1.svg);
    background-position: center;
    background-repeat: no-repeat;
  }
  header > div > div .nossos_telefones > button svg {
    display: none;
  }
  header > div > div .nossos_telefones div#telefones {
    position: relative;
    transform: initial;
    bottom: initial;
    left: initial;
    box-shadow: initial;
    padding: 0;
  }
  header > div > div a.rastreie {
    display: none;
  }
  header > div > div .rastreie_content {
    display: block;
  }
  header > div button.menu {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 1;
  }
}
@media (max-width: 850px) {
  header:before {
    left: -117px;
    bottom: -5px;
  }
  header > div {
    height: 100px;
  }
  header > div a.logo {
    width: calc(195px * 0.7);
    height: calc(100px * 0.7);
  }
}
@media (max-width: 650px) {
  header[scroll=true] > div a.logo {
    width: calc(195px * 0.5);
    height: calc(100px * 0.5);
  }
  header[scroll=true] > div button.menu {
    top: 50%;
  }
  header[scroll=true][data-open=true] > div > div {
    padding: 90px 0 30px;
  }
  header:before {
    left: -46px;
    bottom: -10px;
    width: 265px;
    height: 275px;
    z-index: 1;
  }
  header > div {
    height: 85px;
  }
  header > div a.logo {
    width: calc(195px * 0.6);
    height: calc(100px * 0.6);
    left: 28px;
  }
  header > div > div {
    height: 100%;
  }
  header > div > div:before {
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
  }
  header > div > div .paginas a {
    padding: 7px 10px !important;
  }
  header > div button.menu {
    right: 25px;
    top: calc(50% + 11px);
    transition: all 0.3s;
  }
}

section.rastreio_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  transition: all 0.3s;
}
section.rastreio_modal[data-open=false] {
  opacity: 0;
  pointer-events: none;
}
section.rastreio_modal[data-open=false] > div {
  transform: translateY(-100%);
}
section.rastreio_modal > div {
  background: #E5E9E5;
  width: 100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
}
section.rastreio_modal > div > div {
  position: relative;
  width: 1200px;
  height: 265px;
  margin: 0 auto;
  padding: 0 47px 0 44px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.rastreio_modal > div > div button.fechar {
  position: absolute;
  right: 37px;
  top: 25px;
  border: none;
  background: transparent;
  padding: 10px;
}
section.rastreio_modal > div > div .title {
  position: relative;
  padding: 0 0 0 88px;
  width: 465px;
}
section.rastreio_modal > div > div .title > svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.rastreio_modal > div > div .title > h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 26px;
  line-height: 28px;
  color: #0D0D0D;
  margin: 0;
}
section.rastreio_modal > div > div form {
  width: 580px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.rastreio_modal > div > div form > div {
  width: 345px;
  font-family: outfit;
  position: relative;
  font-size: 16px;
}
section.rastreio_modal > div > div form > div input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
  background: transparent;
  outline: none;
  min-width: 100px;
  height: 36px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-appearance: none;
  padding: 0 0;
  color: #0D0D0D;
}
section.rastreio_modal > div > div form > div input::placeholder {
  color: transparent;
}
section.rastreio_modal > div > div form > div input:required:invalid + label:before {
  content: "*";
}
section.rastreio_modal > div > div form > div input:focus + label, section.rastreio_modal > div > div form > div input:not(:placeholder-shown) + label {
  font-size: 0.8em;
  top: 0;
}
section.rastreio_modal > div > div form > div label {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin: 0;
  color: #0D0D0D;
}
section.rastreio_modal > div > div form button {
  width: 180px;
  height: 45px;
  background: #EF8800;
  color: white;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: outfit;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 3px;
  border: none;
  transition: all 0.2s;
}
section.rastreio_modal > div > div form button:hover {
  letter-spacing: 2px;
}
@media (max-width: 1250px) {
  section.rastreio_modal > div > div {
    width: 1000px;
    height: 195px;
    padding: 50px 47px 0 44px;
  }
  section.rastreio_modal > div > div .title {
    width: 400px;
  }
  section.rastreio_modal > div > div .title > h2 {
    font-size: 22px;
    line-height: 24px;
  }
  section.rastreio_modal > div > div form {
    width: 450px;
  }
  section.rastreio_modal > div > div form > div {
    width: 250px;
  }
  section.rastreio_modal > div > div form button {
    width: 150px;
  }
}
@media (max-width: 1000px) {
  section.rastreio_modal > div > div {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 60px 25px 60px;
    justify-content: center;
    gap: 40px 160px;
  }
  section.rastreio_modal > div > div button.fechar {
    top: 10px;
  }
  section.rastreio_modal > div > div form {
    width: 400px;
  }
  section.rastreio_modal > div > div form > div {
    width: 225px;
  }
}
@media (max-width: 500px) {
  section.rastreio_modal > div > div {
    padding: 66px 25px 56px;
  }
  section.rastreio_modal > div > div .title {
    width: 246px;
    padding: 0 0 0 77px;
  }
  section.rastreio_modal > div > div .title > h2 {
    font-size: 20px;
    line-height: 22px;
  }
  section.rastreio_modal > div > div form {
    width: 100%;
    max-width: 310px;
    gap: 37px 0;
  }
  section.rastreio_modal > div > div form > div {
    width: 100%;
  }
  section.rastreio_modal > div > div form button {
    width: 100%;
  }
}

footer {
  overflow: hidden;
  background: #1C2B1D;
}
footer > div {
  width: 1200px;
  margin: 0 auto;
  padding: 172px 0 0;
}
footer > div .top_content {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 72px;
}
footer > div .top_content a.logo {
  width: 190px;
  height: 100px;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 125px 0 0;
}
footer > div .top_content .paginas {
  width: 370px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 14px 0 0;
  padding: 22px 0 0;
  gap: 6px 0;
}
footer > div .top_content .paginas a {
  display: block;
  width: 50%;
  font-family: outfit;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: white;
}
footer > div .top_content .paginas a:hover {
  color: #76ab16;
}
footer > div .top_content .telefones {
  width: 195px;
  margin: 0 173px 0 0;
  padding: 25px 0 0;
}
footer > div .top_content .telefones a {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 0 0 40px;
  font-family: outfit;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0 0 25px;
}
footer > div .top_content .telefones a:last-of-type {
  margin: 0;
}
footer > div .top_content .telefones a svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer > div .top_content .redes {
  width: 133px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 21px;
  padding: 30px 0 0;
}
footer > div .top_content .redes a {
  width: 56px;
  height: 56px;
  border: 2px solid #86AD2E;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer > div .top_content .redes a:hover {
  background: #86AD2E;
}
footer > div .bottom_content {
  position: relative;
  min-height: 505px;
  padding: 45px 0 20px;
}
footer > div .bottom_content .unidades {
  width: 275px;
}
footer > div .bottom_content .unidades .item {
  margin: 0 0 30px;
}
footer > div .bottom_content .unidades .item h3 {
  font-family: outfit;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin: 0;
}
footer > div .bottom_content .unidades .item p {
  font-family: outfit;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #C9D8CA;
  margin: 0 0 10px;
}
footer > div .bottom_content .unidades .item a {
  position: relative;
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-family: outfit;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 5px;
}
footer > div .bottom_content .unidades .item a.telefone {
  color: #EF8800;
}
footer > div .bottom_content .unidades .item a.whatsapp {
  color: #A6D8AA;
  padding: 0 22px 0 0;
}
footer > div .bottom_content .unidades .item a svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer > div .bottom_content .image {
  position: absolute;
  bottom: 0;
  right: -190px;
  width: 990px;
  height: 460px;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1250px) {
  footer > div {
    width: 100%;
    padding: 172px 35px 0;
  }
  footer > div .top_content {
    justify-content: space-between;
  }
  footer > div .top_content a.logo {
    margin: 0;
  }
  footer > div .top_content .paginas {
    width: 330px;
    margin: 0;
  }
  footer > div .top_content .telefones {
    margin: 0;
  }
  footer > div .bottom_content .image {
    right: initial;
    left: 370px;
  }
}
@media (max-width: 1100px) {
  footer > div .top_content .paginas {
    display: none;
  }
}
@media (max-width: 1000px) {
  footer > div {
    padding: 100px 35px 0;
  }
}
@media (max-width: 700px) {
  footer > div {
    padding: 100px 25px 0;
  }
  footer > div .top_content {
    justify-content: center;
    gap: 15px 360px;
    border-bottom: none;
    padding: 0;
  }
  footer > div .top_content .telefones {
    width: auto;
  }
  footer > div .top_content .telefones a {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
  }
  footer > div .bottom_content {
    min-height: initial;
    padding: 45px 0 250px;
  }
  footer > div .bottom_content .unidades {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }
  footer > div .bottom_content .unidades .item:last-of-type {
    margin: 0;
  }
  footer > div .bottom_content .unidades .item h3 {
    text-align: center;
  }
  footer > div .bottom_content .unidades .item p {
    text-align: center;
  }
  footer > div .bottom_content .unidades .item a {
    margin: 0 auto 5px;
    padding: 0 22px !important;
  }
  footer > div .bottom_content .image {
    left: 50%;
    transform: translateX(-50%);
    width: calc(990px * 0.42);
    height: calc(460px * 0.42);
  }
  footer > div .bottom_content a.hibrida {
    margin: 40px auto 0;
    display: block;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
  }
}

section.home_banner {
  position: relative;
  z-index: 1;
  background-color: #2E4B2F;
  background-image: url(./../img/home/bg_top_home.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 0 0 600px 0;
}
section.home_banner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -235px;
  background-image: url(./../img/home/vegetais[530x760].png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 530px;
  height: 760px;
}
section.home_banner > div {
  width: 1200px;
  margin: 0 auto;
  padding: 235px 0 92px;
}
section.home_banner > div .top_content {
  position: relative;
  min-height: 670px;
}
section.home_banner > div .top_content .text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
}
section.home_banner > div .top_content .text h1 {
  font-family: outfit;
  font-weight: bold;
  font-size: 72px;
  line-height: 72px;
  color: #FFFFFF;
  margin: 0 0 45px;
}
section.home_banner > div .top_content .text button {
  position: relative;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  height: 83px;
  padding: 0 10px 0 110px;
  font-family: outfit;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 4px;
  color: #FFFFFF;
  border: none;
  background: transparent;
}
section.home_banner > div .top_content .text button:hover span::before {
  top: 20px;
  opacity: 1;
}
section.home_banner > div .top_content .text button:hover span svg {
  transform: translateY(4px);
}
section.home_banner > div .top_content .text button span {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  border: 2px solid white;
}
section.home_banner > div .top_content .text button span::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 2px;
  display: block;
  opacity: 0;
  transition: all 0.3s;
}
section.home_banner > div .top_content .text button span svg {
  transition: all 0.3s;
}
section.home_banner > div .top_content .imagem_fundo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1555px;
  height: 550px;
  border-radius: 10px 10px 80px 10px;
  background-size: cover;
  background-repeat: no-repeat;
}
section.home_banner > div .top_content .imagem_fundo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(black, transparent);
  opacity: 0.56;
}
section.home_banner > div .top_content .imagem_fundo .image {
  position: absolute;
  width: 735px;
  height: 790px;
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: -133px;
}
section.home_banner > div .bottom_content {
  padding: 95px 0 0;
}
section.home_banner > div .bottom_content .text {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 50px;
}
section.home_banner > div .bottom_content .text h2 {
  max-width: 505px;
  font-family: outfit;
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
  color: #FFFFFF;
  margin: 0;
}
section.home_banner > div .bottom_content .text p {
  font-family: outfit;
  font-weight: 100;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  max-width: 605px;
  color: #fff;
}
section.home_banner > div .bottom_content .produtos {
  width: calc(330px * 3);
  margin: 0 auto 50px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.home_banner > div .bottom_content .produtos .item {
  position: relative;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 330px;
  height: 320px;
}
section.home_banner > div .bottom_content .produtos .item:nth-child(1) .image {
  transform: translate(-50px, 0);
}
section.home_banner > div .bottom_content .produtos .item:nth-child(2) .image {
  transform: translate(-8px, 15px);
}
section.home_banner > div .bottom_content .produtos .item:nth-child(3) .image {
  transform: translate(-8px, 15px);
}
section.home_banner > div .bottom_content .produtos .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
section.home_banner > div .bottom_content .produtos .item .image {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 230px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
section.home_banner > div .bottom_content .produtos .item .image2 {
  position: absolute;
  right: 20px;
  top: -23px;
  width: 115px;
  height: 90px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.home_banner > div .bottom_content .produtos .item p {
  position: absolute;
  transform: rotate(-90deg);
  bottom: 150px;
  right: -120px;
  width: 320px;
  font-family: outfit;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 5px;
  color: white;
  margin: 0;
  padding: 0 20px;
}
section.home_banner > div .bottom_content a.conheca {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 35px 0 0;
  margin: 0 auto;
  width: 320px;
  height: 45px;
  background: #EF8800;
  color: white;
  border-radius: 6px;
  font-family: outfit;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
}
section.home_banner > div .bottom_content a.conheca:hover {
  letter-spacing: 1px;
}
section.home_banner > div .bottom_content a.conheca svg {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1470px) {
  section.home_banner > div .top_content .imagem_fundo {
    right: 50px;
  }
  section.home_banner > div .top_content .imagem_fundo .image {
    right: -73px;
  }
}
@media (max-width: 1250px) {
  section.home_banner {
    border-radius: 0;
  }
  section.home_banner::before {
    display: none;
  }
  section.home_banner > div {
    padding: 235px 35px 92px;
    width: 100%;
  }
  section.home_banner > div .top_content {
    min-height: 560px;
  }
  section.home_banner > div .top_content .text h1 {
    font-size: 62px;
    line-height: 62px;
  }
  section.home_banner > div .top_content .imagem_fundo {
    width: calc(1555px * 0.85);
    height: calc(550px * 0.85);
  }
  section.home_banner > div .top_content .imagem_fundo .image {
    width: calc(735px * 0.65);
    height: calc(790px * 0.65);
  }
  section.home_banner > div .bottom_content {
    padding: 60px 0 0;
  }
  section.home_banner > div .bottom_content .text h2 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px;
    text-align: center;
  }
  section.home_banner > div .bottom_content .text p {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  section.home_banner > div .bottom_content .produtos {
    width: calc(330px * 2);
    justify-content: center;
  }
}
@media (max-width: 900px) {
  section.home_banner {
    overflow: hidden;
  }
  section.home_banner > div .top_content {
    min-height: initial;
    padding: 0 0 370px;
  }
  section.home_banner > div .top_content .text h1 {
    font-size: 47px;
    line-height: 50px;
  }
  section.home_banner > div .top_content .text button {
    display: none;
  }
  section.home_banner > div .top_content .imagem_fundo {
    width: calc(1555px * 0.6);
    height: calc(550px * 0.6);
    right: 35px;
  }
  section.home_banner > div .top_content .imagem_fundo .image {
    width: calc(735px * 0.55);
    height: calc(790px * 0.55);
    right: -63px;
  }
  section.home_banner > div .bottom_content .produtos {
    width: 550px;
    margin: 0 auto 20px;
  }
  section.home_banner > div .bottom_content .produtos .item {
    width: 100%;
    height: 185px;
    margin: 0 0 40px;
  }
  section.home_banner > div .bottom_content .produtos .item:nth-child(2) .image {
    transform: translate(-48px, -15px);
  }
  section.home_banner > div .bottom_content .produtos .item:nth-child(3) .image {
    transform: translate(-38px, -25px);
  }
  section.home_banner > div .bottom_content .produtos .item .image2 {
    display: none;
  }
  section.home_banner > div .bottom_content .produtos .item p {
    bottom: 83px;
    right: -57px;
    width: 185px;
    text-align: center;
  }
}
@media (max-width: 650px) {
  section.home_banner {
    background-size: 1570px;
  }
  section.home_banner > div {
    padding: 162px 25px 70px;
  }
  section.home_banner > div .top_content {
    padding: 0 0 265px;
  }
  section.home_banner > div .top_content .text h1 {
    font-size: 34px;
    line-height: 36px;
    margin: 0;
  }
  section.home_banner > div .top_content .imagem_fundo {
    width: calc(1555px * 0.37);
    height: calc(550px * 0.37);
    right: 0;
    border-radius: 10px 10px 40px 10px;
  }
  section.home_banner > div .top_content .imagem_fundo .image {
    width: calc(735px * 0.356);
    height: calc(790px * 0.356);
    right: -40px;
  }
  section.home_banner > div .bottom_content {
    padding: 80px 0 0;
  }
  section.home_banner > div .bottom_content .text {
    margin: 0 0 88px;
  }
  section.home_banner > div .bottom_content .text h2 {
    font-size: 24px;
    line-height: 26px;
  }
  section.home_banner > div .bottom_content .text p {
    font-size: 16px;
  }
  section.home_banner > div .bottom_content .produtos {
    width: 310px;
    margin: 0 auto;
  }
  section.home_banner > div .bottom_content .produtos .item {
    height: 115px;
  }
  section.home_banner > div .bottom_content .produtos .item:nth-child(1) .image {
    transform: translate(-31px, -3px);
  }
  section.home_banner > div .bottom_content .produtos .item:nth-child(2) .image {
    transform: translate(-43px, -8px);
  }
  section.home_banner > div .bottom_content .produtos .item:nth-child(3) .image {
    transform: translate(-23px, -18px);
  }
  section.home_banner > div .bottom_content .produtos .item .image {
    width: calc(320px * 0.62);
    height: calc(230px * 0.62);
  }
  section.home_banner > div .bottom_content .produtos .item p {
    font-size: 14px;
    width: 115px;
    bottom: 48px;
    right: -32px;
    padding: 0;
    letter-spacing: 3px;
  }
  section.home_banner > div .bottom_content a.conheca {
    width: 310px;
  }
}
section.home_mapa {
  position: relative;
  padding: 105px 0 100px;
  overflow: hidden;
}
section.home_mapa:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 320px;
  background-image: linear-gradient(#D2DED3, transparent);
}
section.home_mapa > svg {
  position: absolute;
  left: -260px;
  top: -470px;
}
section.home_mapa > div {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  min-height: 705px;
}
section.home_mapa > div .text {
  width: 530px;
  padding: 80px 0 0;
}
section.home_mapa > div .text h2 {
  position: relative;
  z-index: 1;
  font-family: outfit;
  font-weight: bold;
  font-size: 40px;
  line-height: 40px;
  color: #2E4B2F;
  max-width: 405px;
  margin: 0 0 85px;
}
section.home_mapa > div .text .mapa {
  position: relative;
  width: calc(755px * 1);
  height: calc(705px * 1);
  background-image: url(./../img/home/mapa[755x705].svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
}
section.home_mapa > div .text .mapa button {
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
  padding: 0;
}
section.home_mapa > div .text .mapa button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(14px * 1);
  height: calc(14px * 1);
  background: white;
  border-radius: 50%;
}
@keyframes circle_animate {
  0% {
    width: calc(14px * 1);
    height: calc(14px * 1);
  }
  30% {
    opacity: 1;
  }
  100% {
    width: calc(25px * 1);
    height: calc(25px * 1);
    opacity: 0;
  }
}
@keyframes circle_animate_bsb {
  0% {
    width: calc(9px * 1);
    height: calc(9px * 1);
  }
  30% {
    opacity: 1;
  }
  100% {
    width: calc(16px * 1);
    height: calc(16px * 1);
    opacity: 0;
  }
}
section.home_mapa > div .text .mapa button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(25px * 1);
  height: calc(25px * 1);
  border: 1px solid white;
  border-radius: 50%;
  animation-name: circle_animate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
section.home_mapa > div .text .mapa button.brasilia {
  top: calc(378px * 1);
  right: calc(230px * 1);
}
section.home_mapa > div .text .mapa button.brasilia::before {
  width: calc(9px * 1);
  height: calc(9px * 1);
}
section.home_mapa > div .text .mapa button.brasilia::after {
  width: calc(16px * 1);
  height: calc(16px * 1);
  animation-name: circle_animate_bsb;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
section.home_mapa > div .text .mapa button.goias {
  top: calc(395px * 1);
  right: calc(270px * 1);
}
section.home_mapa > div .text .mapa button.mato-grosso {
  top: calc(331px * 1);
  right: calc(370px * 1);
}
section.home_mapa > div .text .mapa button.mato-grosso-sul {
  top: calc(461px * 1);
  right: calc(350px * 1);
}
section.home_mapa > div .text .mapa button.parana {
  top: calc(541px * 1);
  right: calc(296px * 1);
}
section.home_mapa > div .text .mapa button.santa-catarina {
  top: calc(588px * 1);
  right: calc(267px * 1);
}
section.home_mapa > div .text .mapa button.rio-grande-sul {
  top: calc(633px * 1);
  right: calc(320px * 1);
}
section.home_mapa > div .text .mapa button.sao-paulo {
  top: calc(491px * 1);
  right: calc(250px * 1);
}
section.home_mapa > div .text .mapa button.rio-janeiro {
  top: calc(498px * 1);
  right: calc(134px * 1);
}
section.home_mapa > div .text .mapa button.minas-gerais {
  top: calc(491px * 1);
  right: calc(196px * 1);
}
section.home_mapa > div .text .mapa button.espirito-santo {
  top: calc(448px * 1);
  right: calc(99px * 1);
}
section.home_mapa > div .text .mapa button.bahia {
  top: calc(318px * 1);
  right: calc(124px * 1);
}
section.home_mapa > div .text .mapa button.sergipe {
  top: calc(290px * 1);
  right: calc(45px * 1);
}
section.home_mapa > div .text .mapa button.alagoas {
  top: calc(270px * 1);
  right: calc(28px * 1);
}
section.home_mapa > div .text .mapa button.pernambuco {
  top: calc(245px * 1);
  right: calc(56px * 1);
}
section.home_mapa > div .text .mapa button.paraiba {
  top: calc(223px * 1);
  right: calc(21px * 1);
}
section.home_mapa > div .text .mapa button.rio-grande-norte {
  top: calc(199px * 1);
  right: calc(31px * 1);
}
section.home_mapa > div .text .mapa button.ceara {
  top: calc(179px * 1);
  right: calc(85px * 1);
}
section.home_mapa > div .text .mapa button.piaui {
  top: calc(234px * 1);
  right: calc(130px * 1);
}
section.home_mapa > div .text .mapa button.maranhao {
  top: calc(179px * 1);
  right: calc(181px * 1);
}
section.home_mapa > div .text .mapa button.tocantins {
  top: calc(284px * 1);
  right: calc(236px * 1);
}
section.home_mapa > div .text .mapa button.para {
  top: calc(184px * 1);
  right: calc(317px * 1);
}
section.home_mapa > div .text .mapa button.amapa {
  top: calc(72px * 1);
  right: calc(298px * 1);
}
section.home_mapa > div .text .mapa button.roraima {
  top: calc(61px * 1);
  right: calc(464px * 1);
}
section.home_mapa > div .text .mapa button.amazonas {
  top: calc(175px * 1);
  right: calc(524px * 1);
}
section.home_mapa > div .text .mapa button.acre {
  top: calc(272px * 1);
  right: calc(609px * 1);
}
section.home_mapa > div .text .mapa button.rondonia {
  top: calc(292px * 1);
  right: calc(499px * 1);
}
section.home_mapa > div .text .dados {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 65px 50px;
}
section.home_mapa > div .text .dados .dado {
  width: 240px;
}
section.home_mapa > div .text .dados .dado.dado_2 h3 {
  padding: 16px 0 0;
  line-height: 30px;
}
section.home_mapa > div .text .dados .dado.dado_2 h3:before {
  content: "+ de";
  position: absolute;
  left: 0;
  top: 0;
  font-family: outfit;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #EF8800;
}
section.home_mapa > div .text .dados .dado.dado_3 h3 {
  font-size: 36px;
  line-height: 32px;
  padding: 20px 0 0;
}
section.home_mapa > div .text .dados .dado.dado_3 h3:before {
  content: "+ de";
  position: absolute;
  left: 0;
  top: 0;
  font-family: outfit;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #EF8800;
}
section.home_mapa > div .text .dados .dado.dado_4 h3 {
  font-size: 36px;
  line-height: 36px;
}
section.home_mapa > div .text .dados .dado h3 {
  position: relative;
  font-family: outfit;
  font-weight: bold;
  font-size: 30px;
  line-height: 34px;
  color: #2E4B2F;
  margin: 0 0 7px;
}
section.home_mapa > div .text .dados .dado p {
  font-family: outfit;
  font-weight: 100;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin: 0;
}
@media (max-width: 1250px) {
  section.home_mapa {
    padding: 90px 0 80px;
  }
  section.home_mapa > svg {
    width: 910px;
    height: auto;
  }
  section.home_mapa > div {
    width: 100%;
  }
  section.home_mapa > div .text {
    width: 550px;
    margin: 0 auto;
    padding: 0;
  }
  section.home_mapa > div .text h2 {
    max-width: 440px;
    margin: 0 auto 40px;
    text-align: center;
  }
  section.home_mapa > div .text .mapa {
    position: relative;
    width: calc(755px * 0.7);
    height: calc(705px * 0.7);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    right: initial;
    top: initial;
    margin: 0 auto 45px;
  }
  section.home_mapa > div .text .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.home_mapa > div .text .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.7);
    height: calc(14px * 0.7);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.7);
      height: calc(14px * 0.7);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.7);
      height: calc(25px * 0.7);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.7);
      height: calc(9px * 0.7);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.7);
      height: calc(16px * 0.7);
      opacity: 0;
    }
  }
  section.home_mapa > div .text .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.7);
    height: calc(25px * 0.7);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.home_mapa > div .text .mapa button.brasilia {
    top: calc(378px * 0.7);
    right: calc(230px * 0.7);
  }
  section.home_mapa > div .text .mapa button.brasilia::before {
    width: calc(9px * 0.7);
    height: calc(9px * 0.7);
  }
  section.home_mapa > div .text .mapa button.brasilia::after {
    width: calc(16px * 0.7);
    height: calc(16px * 0.7);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.home_mapa > div .text .mapa button.goias {
    top: calc(395px * 0.7);
    right: calc(270px * 0.7);
  }
  section.home_mapa > div .text .mapa button.mato-grosso {
    top: calc(331px * 0.7);
    right: calc(370px * 0.7);
  }
  section.home_mapa > div .text .mapa button.mato-grosso-sul {
    top: calc(461px * 0.7);
    right: calc(350px * 0.7);
  }
  section.home_mapa > div .text .mapa button.parana {
    top: calc(541px * 0.7);
    right: calc(296px * 0.7);
  }
  section.home_mapa > div .text .mapa button.santa-catarina {
    top: calc(588px * 0.7);
    right: calc(267px * 0.7);
  }
  section.home_mapa > div .text .mapa button.rio-grande-sul {
    top: calc(633px * 0.7);
    right: calc(320px * 0.7);
  }
  section.home_mapa > div .text .mapa button.sao-paulo {
    top: calc(491px * 0.7);
    right: calc(250px * 0.7);
  }
  section.home_mapa > div .text .mapa button.rio-janeiro {
    top: calc(498px * 0.7);
    right: calc(134px * 0.7);
  }
  section.home_mapa > div .text .mapa button.minas-gerais {
    top: calc(491px * 0.7);
    right: calc(196px * 0.7);
  }
  section.home_mapa > div .text .mapa button.espirito-santo {
    top: calc(448px * 0.7);
    right: calc(99px * 0.7);
  }
  section.home_mapa > div .text .mapa button.bahia {
    top: calc(318px * 0.7);
    right: calc(124px * 0.7);
  }
  section.home_mapa > div .text .mapa button.sergipe {
    top: calc(290px * 0.7);
    right: calc(45px * 0.7);
  }
  section.home_mapa > div .text .mapa button.alagoas {
    top: calc(270px * 0.7);
    right: calc(28px * 0.7);
  }
  section.home_mapa > div .text .mapa button.pernambuco {
    top: calc(245px * 0.7);
    right: calc(56px * 0.7);
  }
  section.home_mapa > div .text .mapa button.paraiba {
    top: calc(223px * 0.7);
    right: calc(21px * 0.7);
  }
  section.home_mapa > div .text .mapa button.rio-grande-norte {
    top: calc(199px * 0.7);
    right: calc(31px * 0.7);
  }
  section.home_mapa > div .text .mapa button.ceara {
    top: calc(179px * 0.7);
    right: calc(85px * 0.7);
  }
  section.home_mapa > div .text .mapa button.piaui {
    top: calc(234px * 0.7);
    right: calc(130px * 0.7);
  }
  section.home_mapa > div .text .mapa button.maranhao {
    top: calc(179px * 0.7);
    right: calc(181px * 0.7);
  }
  section.home_mapa > div .text .mapa button.tocantins {
    top: calc(284px * 0.7);
    right: calc(236px * 0.7);
  }
  section.home_mapa > div .text .mapa button.para {
    top: calc(184px * 0.7);
    right: calc(317px * 0.7);
  }
  section.home_mapa > div .text .mapa button.amapa {
    top: calc(72px * 0.7);
    right: calc(298px * 0.7);
  }
  section.home_mapa > div .text .mapa button.roraima {
    top: calc(61px * 0.7);
    right: calc(464px * 0.7);
  }
  section.home_mapa > div .text .mapa button.amazonas {
    top: calc(175px * 0.7);
    right: calc(524px * 0.7);
  }
  section.home_mapa > div .text .mapa button.acre {
    top: calc(272px * 0.7);
    right: calc(609px * 0.7);
  }
  section.home_mapa > div .text .mapa button.rondonia {
    top: calc(292px * 0.7);
    right: calc(499px * 0.7);
  }
  section.home_mapa > div .text .dados {
    gap: 50px 70px;
  }
}
@media (max-width: 650px) {
  section.home_mapa:before {
    display: none;
  }
  section.home_mapa > svg {
    display: none;
  }
  section.home_mapa > div .text {
    width: 100%;
    padding: 0 25px;
  }
  section.home_mapa > div .text h2 {
    font-size: 28px;
    line-height: 30px;
  }
  section.home_mapa > div .text .mapa {
    position: relative;
    width: calc(755px * 0.41);
    height: calc(705px * 0.41);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.home_mapa > div .text .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.home_mapa > div .text .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.41);
    height: calc(14px * 0.41);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.41);
      height: calc(14px * 0.41);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.41);
      height: calc(25px * 0.41);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.41);
      height: calc(9px * 0.41);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.41);
      height: calc(16px * 0.41);
      opacity: 0;
    }
  }
  section.home_mapa > div .text .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.41);
    height: calc(25px * 0.41);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.home_mapa > div .text .mapa button.brasilia {
    top: calc(378px * 0.41);
    right: calc(230px * 0.41);
  }
  section.home_mapa > div .text .mapa button.brasilia::before {
    width: calc(9px * 0.41);
    height: calc(9px * 0.41);
  }
  section.home_mapa > div .text .mapa button.brasilia::after {
    width: calc(16px * 0.41);
    height: calc(16px * 0.41);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.home_mapa > div .text .mapa button.goias {
    top: calc(395px * 0.41);
    right: calc(270px * 0.41);
  }
  section.home_mapa > div .text .mapa button.mato-grosso {
    top: calc(331px * 0.41);
    right: calc(370px * 0.41);
  }
  section.home_mapa > div .text .mapa button.mato-grosso-sul {
    top: calc(461px * 0.41);
    right: calc(350px * 0.41);
  }
  section.home_mapa > div .text .mapa button.parana {
    top: calc(541px * 0.41);
    right: calc(296px * 0.41);
  }
  section.home_mapa > div .text .mapa button.santa-catarina {
    top: calc(588px * 0.41);
    right: calc(267px * 0.41);
  }
  section.home_mapa > div .text .mapa button.rio-grande-sul {
    top: calc(633px * 0.41);
    right: calc(320px * 0.41);
  }
  section.home_mapa > div .text .mapa button.sao-paulo {
    top: calc(491px * 0.41);
    right: calc(250px * 0.41);
  }
  section.home_mapa > div .text .mapa button.rio-janeiro {
    top: calc(498px * 0.41);
    right: calc(134px * 0.41);
  }
  section.home_mapa > div .text .mapa button.minas-gerais {
    top: calc(491px * 0.41);
    right: calc(196px * 0.41);
  }
  section.home_mapa > div .text .mapa button.espirito-santo {
    top: calc(448px * 0.41);
    right: calc(99px * 0.41);
  }
  section.home_mapa > div .text .mapa button.bahia {
    top: calc(318px * 0.41);
    right: calc(124px * 0.41);
  }
  section.home_mapa > div .text .mapa button.sergipe {
    top: calc(290px * 0.41);
    right: calc(45px * 0.41);
  }
  section.home_mapa > div .text .mapa button.alagoas {
    top: calc(270px * 0.41);
    right: calc(28px * 0.41);
  }
  section.home_mapa > div .text .mapa button.pernambuco {
    top: calc(245px * 0.41);
    right: calc(56px * 0.41);
  }
  section.home_mapa > div .text .mapa button.paraiba {
    top: calc(223px * 0.41);
    right: calc(21px * 0.41);
  }
  section.home_mapa > div .text .mapa button.rio-grande-norte {
    top: calc(199px * 0.41);
    right: calc(31px * 0.41);
  }
  section.home_mapa > div .text .mapa button.ceara {
    top: calc(179px * 0.41);
    right: calc(85px * 0.41);
  }
  section.home_mapa > div .text .mapa button.piaui {
    top: calc(234px * 0.41);
    right: calc(130px * 0.41);
  }
  section.home_mapa > div .text .mapa button.maranhao {
    top: calc(179px * 0.41);
    right: calc(181px * 0.41);
  }
  section.home_mapa > div .text .mapa button.tocantins {
    top: calc(284px * 0.41);
    right: calc(236px * 0.41);
  }
  section.home_mapa > div .text .mapa button.para {
    top: calc(184px * 0.41);
    right: calc(317px * 0.41);
  }
  section.home_mapa > div .text .mapa button.amapa {
    top: calc(72px * 0.41);
    right: calc(298px * 0.41);
  }
  section.home_mapa > div .text .mapa button.roraima {
    top: calc(61px * 0.41);
    right: calc(464px * 0.41);
  }
  section.home_mapa > div .text .mapa button.amazonas {
    top: calc(175px * 0.41);
    right: calc(524px * 0.41);
  }
  section.home_mapa > div .text .mapa button.acre {
    top: calc(272px * 0.41);
    right: calc(609px * 0.41);
  }
  section.home_mapa > div .text .mapa button.rondonia {
    top: calc(292px * 0.41);
    right: calc(499px * 0.41);
  }
  section.home_mapa > div .text .dados {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }
  section.home_mapa > div .text .dados .dado {
    width: 100%;
    gap: 28px 0;
  }
  section.home_mapa > div .text .dados .dado.dado_2 h3 {
    padding: 0 0 0 35px;
  }
  section.home_mapa > div .text .dados .dado.dado_2 h3:before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  section.home_mapa > div .text .dados .dado.dado_3 h3 {
    padding: 0 0 0 35px;
  }
  section.home_mapa > div .text .dados .dado.dado_3 h3:before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
  }
  section.home_mapa > div .text .dados .dado h3 {
    font-size: 24px !important;
    line-height: 26px !important;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
    margin: 0 auto 6px;
  }
  section.home_mapa > div .text .dados .dado p {
    text-align: center;
  }
}
section.home_transporte {
  position: relative;
}
section.home_transporte:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(./../img/home/transp_bg.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 690px;
  max-height: calc(100% - 190px);
}
section.home_transporte .img_banner {
  position: absolute;
  right: 0;
  top: 0;
  height: 470px;
  width: calc(((100% - 1200px) / 2) + 1200px);
  background-position: left center;
  border-radius: 100px 0 0 0;
}
section.home_transporte .img_banner:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -415px;
  top: -135px;
  width: 970px;
  height: 760px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./../img/home/veg_transp[970x760].png);
}
section.home_transporte .img_banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, black);
  opacity: 0.22;
}
section.home_transporte .content {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 428px 0 180px;
}
section.home_transporte .content h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  color: #FFFFFF;
  width: 100%;
  max-width: 955px;
  margin: 0 0 20px;
}
section.home_transporte .content .text {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.home_transporte .content .text > p {
  width: 100%;
  max-width: 495px;
  font-family: outfit;
  font-weight: 100;
  font-size: 22px;
  line-height: 26px;
  color: #FFFFFF;
  margin: 0;
  padding: 50px 0 0;
}
section.home_transporte .content .text .images {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 0 0 0 192px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.home_transporte .content .text .images:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 126px;
  height: 1px;
  background: white;
}
section.home_transporte .content .text .images > div {
  width: 165px;
  height: 135px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1250px) {
  section.home_transporte .img_banner {
    width: calc(100% - 35px);
  }
  section.home_transporte .content {
    width: 100%;
    padding: 428px 35px 130px;
  }
  section.home_transporte .content .text .images {
    padding: 0 0 0 140px;
    max-width: 490px;
  }
  section.home_transporte .content .text .images:before {
    width: 100px;
  }
}
@media (max-width: 1100px) {
  section.home_transporte:before {
    height: 100%;
    max-height: calc(100% - 130px);
  }
  section.home_transporte .img_banner {
    height: 370px;
    background-size: cover;
  }
  section.home_transporte .img_banner:before {
    display: none;
  }
  section.home_transporte .content h2 {
    font-size: 45px;
    line-height: 45px;
    max-width: 585px;
    margin: 0 auto 40px;
    text-align: center;
  }
  section.home_transporte .content .text {
    justify-content: center;
    gap: 50px 200px;
  }
  section.home_transporte .content .text > p {
    text-align: center;
    padding: 0;
  }
  section.home_transporte .content .text .images {
    padding: 45px 0 0;
    max-width: 350px;
  }
  section.home_transporte .content .text .images:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 650px) {
  section.home_transporte:before {
    max-height: calc(100% - 95px);
  }
  section.home_transporte .img_banner {
    width: calc(100% - 25px);
    height: 285px;
    border-radius: 60px 0 0 0;
  }
  section.home_transporte .content {
    padding: 318px 25px 105px;
  }
  section.home_transporte .content h2 {
    font-size: 30px;
    line-height: 32px;
    max-width: 380px;
    margin: 0 auto 30px;
  }
  section.home_transporte .content .text {
    gap: 43px 200px;
  }
  section.home_transporte .content .text .images {
    max-width: 310px;
    padding: 60px 0 0;
  }
  section.home_transporte .content .text .images:before {
    width: 125px;
  }
  section.home_transporte .content .text .images > div {
    width: 140px;
    height: 115px;
  }
}
section.home_rastreio {
  position: relative;
  z-index: 1;
  height: 0;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  -webkit-flex-wrap: initial;
  flex-wrap: initial;
}
section.home_rastreio > div {
  width: 1200px;
  height: 120px;
  margin: 0 auto;
  padding: 0 47px 0 44px;
  background: #E5E9E5;
  border-radius: 4px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.home_rastreio > div .title {
  position: relative;
  padding: 0 0 0 88px;
  width: 465px;
}
section.home_rastreio > div .title > svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.home_rastreio > div .title > h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 26px;
  line-height: 28px;
  color: #0D0D0D;
  margin: 0;
}
section.home_rastreio > div form {
  width: 580px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.home_rastreio > div form > div {
  width: 345px;
  font-family: outfit;
  position: relative;
  font-size: 16px;
}
section.home_rastreio > div form > div input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
  background: transparent;
  outline: none;
  min-width: 100px;
  height: 36px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-appearance: none;
  padding: 0 0;
  color: #0D0D0D;
}
section.home_rastreio > div form > div input::placeholder {
  color: transparent;
}
section.home_rastreio > div form > div input:required:invalid + label:before {
  content: "*";
}
section.home_rastreio > div form > div input:focus + label, section.home_rastreio > div form > div input:not(:placeholder-shown) + label {
  font-size: 0.8em;
  top: 0;
}
section.home_rastreio > div form > div label {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin: 0;
  color: #0D0D0D;
}
section.home_rastreio > div form button {
  width: 180px;
  height: 45px;
  background: #EF8800;
  color: white;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: outfit;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 3px;
  border: none;
  transition: all 0.2s;
}
section.home_rastreio > div form button:hover {
  letter-spacing: 2px;
}
@media (max-width: 1250px) {
  section.home_rastreio > div {
    width: 1000px;
  }
  section.home_rastreio > div .title {
    width: 400px;
  }
  section.home_rastreio > div .title > h2 {
    font-size: 22px;
    line-height: 24px;
  }
  section.home_rastreio > div form {
    width: 450px;
  }
  section.home_rastreio > div form > div {
    width: 250px;
  }
  section.home_rastreio > div form button {
    width: 150px;
  }
}
@media (max-width: 1000px) {
  section.home_rastreio {
    height: auto;
  }
  section.home_rastreio > div {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 60px 25px 60px;
    justify-content: center;
    gap: 40px 160px;
  }
  section.home_rastreio > div form {
    width: 400px;
  }
  section.home_rastreio > div form > div {
    width: 225px;
  }
}
@media (max-width: 500px) {
  section.home_rastreio > div {
    padding: 66px 25px 56px;
  }
  section.home_rastreio > div .title {
    width: 246px;
    padding: 0 0 0 77px;
  }
  section.home_rastreio > div .title > h2 {
    font-size: 20px;
    line-height: 22px;
  }
  section.home_rastreio > div form {
    width: 100%;
    max-width: 310px;
    gap: 37px 0;
  }
  section.home_rastreio > div form > div {
    width: 100%;
  }
  section.home_rastreio > div form button {
    width: 100%;
  }
}

section.institucional_header {
  position: relative;
  overflow: hidden;
}
section.institucional_header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 580px;
  background-image: url(./../img/institucional/before_bg.png);
  background-size: cover;
  background-position: center;
  background-color: #2E4B2F;
  border-radius: 0 0 400px 0;
}
section.institucional_header > div {
  position: relative;
  z-index: 1;
  width: 950px;
  margin: 0 auto;
  padding: 200px 0 20px;
}
section.institucional_header > div > svg {
  position: absolute;
  right: -352px;
  top: 128px;
}
section.institucional_header > div h1 {
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 4px;
  color: #EF8800;
  margin: 0 0 21px;
  text-align: center;
}
section.institucional_header > div h2 {
  position: relative;
  width: 100%;
  max-width: 660px;
  padding: 0 0 32px;
  margin: 0 auto 48px;
  font-family: outfit;
  font-weight: bold;
  font-size: 38px;
  line-height: 36px;
  color: #FFFFFF;
  text-align: center;
}
section.institucional_header > div h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #EF8800;
}
section.institucional_header > div .image {
  position: relative;
  width: 100%;
  height: 505px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  margin: 0 0 65px;
}
section.institucional_header > div .image > div {
  width: 445px;
  height: 350px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -223px;
  bottom: -68px;
}
section.institucional_header > div p {
  font-family: outfit;
  font-weight: 100;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media (max-width: 1200px) {
  section.institucional_header > div {
    width: 760px;
  }
  section.institucional_header > div .image {
    height: calc(505px * 0.8);
  }
  section.institucional_header > div .image > div {
    width: calc(445px * 0.8);
    height: calc(350px * 0.8);
    right: calc(-223px * 0.8);
    bottom: calc(-68px * 0.8);
  }
}
@media (max-width: 900px) {
  section.institucional_header::before {
    border-radius: 0;
  }
  section.institucional_header > div {
    width: 600px;
  }
  section.institucional_header > div > svg {
    display: none;
  }
  section.institucional_header > div h2 {
    font-size: 36px;
    line-height: 34px;
  }
  section.institucional_header > div .image {
    height: 315px;
  }
  section.institucional_header > div .image > div {
    display: none;
  }
}
@media (max-width: 650px) {
  section.institucional_header::before {
    height: 485px;
    background-size: 1680px;
    background-position: right;
  }
  section.institucional_header > div {
    padding: 170px 25px 20px;
    width: 100%;
  }
  section.institucional_header > div h1 {
    margin: 0 0 16px;
  }
  section.institucional_header > div h2 {
    font-size: 26px;
    line-height: 28px;
    max-width: 450px;
    padding: 0 0 40px;
    margin: 0 auto 60px;
  }
  section.institucional_header > div .image {
    height: 49.2vw;
    margin: 0 0 50px;
  }
  section.institucional_header > div p {
    font-size: 16px;
    line-height: 26px;
  }
}
section.institucional_missao > div {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 115px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 60px;
}
section.institucional_missao > div .item {
  width: 360px;
}
section.institucional_missao > div .item .icon {
  width: 108px;
  height: 108px;
  background-image: linear-gradient(#ef8901, #f7c147);
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}
section.institucional_missao > div .item h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 4px;
  color: #2E4B2F;
  text-align: center;
  margin: 0 0 10px;
}
section.institucional_missao > div .item p {
  font-family: outfit;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #5A5A5A;
  text-align: center;
  margin: 0;
}
@media (max-width: 1250px) {
  section.institucional_missao > div {
    width: 780px;
  }
}
@media (max-width: 850px) {
  section.institucional_missao > div {
    width: 360px;
  }
}
@media (max-width: 550px) {
  section.institucional_missao > div {
    width: 100%;
    padding: 35px 25px 75px;
    gap: 55px 60px;
  }
  section.institucional_missao > div .item {
    width: 100%;
    max-width: 310px;
  }
  section.institucional_missao > div .item .icon {
    margin: 0 auto 17px;
  }
}
section.institucional_images {
  position: relative;
}
section.institucional_images > svg {
  position: absolute;
  left: 50%;
  top: -810px;
  transform: translateX(calc(-50% - 847px));
}
section.institucional_images > div {
  position: relative;
  height: 285px;
  overflow: hidden;
}
section.institucional_images > div::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1920px;
  height: 187px;
  background: #EF8800;
  left: 50%;
  transform: translateX(calc(-50% + 847px)) skewX(-15deg);
  z-index: 1;
}
section.institucional_images > div > div {
  position: absolute;
  overflow: hidden;
  height: 250px;
}
section.institucional_images > div > div.left_image {
  width: 1000px;
  top: 35px;
  left: 50%;
  transform: translateX(calc(-50% - 495px)) skewX(-15deg);
}
section.institucional_images > div > div.left_image > div {
  transform: skewX(15deg);
  right: -34px;
  background-position: right center;
}
section.institucional_images > div > div.right_image {
  width: 1115px;
  top: 10px;
  left: 50%;
  transform: translateX(calc(-50% + 445px)) skewX(-15deg);
  z-index: 2;
}
section.institucional_images > div > div.right_image > div {
  transform: skewX(15deg);
  left: -34px;
  background-position: left center;
}
section.institucional_images > div > div > div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
@media (max-width: 1100px) {
  section.institucional_images > svg {
    display: none;
  }
  section.institucional_images > div {
    height: 235px;
  }
  section.institucional_images > div::before {
    transform: translateX(calc(-50% + 843px)) skewX(-15deg);
  }
  section.institucional_images > div > div {
    height: 200px;
  }
  section.institucional_images > div > div.left_image {
    width: 800px;
  }
  section.institucional_images > div > div.right_image {
    width: 885px;
    transform: translateX(calc(-50% + 331px)) skewX(-15deg);
  }
}
@media (max-width: 650px) {
  section.institucional_images > div {
    height: 138px;
  }
  section.institucional_images > div::before {
    transform: skewX(-15deg);
    height: 76px;
    left: 45.3%;
    top: 5px;
  }
  section.institucional_images > div > div {
    height: 98px;
    height: 118px;
  }
  section.institucional_images > div > div.left_image {
    width: 380px;
    transform: skewX(-15deg);
    left: initial;
    right: 50%;
    top: 20px;
  }
  section.institucional_images > div > div.right_image {
    width: 390px;
    transform: skewX(-15deg);
    left: 45%;
  }
}
section.institucional_dados > div {
  width: 1200px;
  margin: 0 auto;
  padding: 120px 0 55px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 80px;
}
section.institucional_dados > div .item {
  position: relative;
  width: 240px;
}
section.institucional_dados > div .item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 25px;
  width: 247px;
  height: 67px;
  border-radius: 15px;
  background: #EF8800;
  opacity: 0.09;
}
section.institucional_dados > div .item.item_2 h2::before {
  content: "+ de";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  font-family: outfit;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #EF8800;
}
section.institucional_dados > div .item.item_3 h2::before {
  content: "+ de";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  font-family: outfit;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #EF8800;
}
section.institucional_dados > div .item.item_3 h2::after {
  content: "M²";
  font-family: outfit;
  font-weight: 100;
  font-size: 36px;
  line-height: 34px;
  color: #2E4B2F;
}
section.institucional_dados > div .item h2 {
  position: relative;
  font-family: outfit;
  font-weight: 100;
  font-size: 50px;
  line-height: 52px;
  color: #2E4B2F;
  margin: 0 0 15px;
}
section.institucional_dados > div .item p {
  position: relative;
  font-family: outfit;
  font-weight: 100;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}
@media (max-width: 1250px) {
  section.institucional_dados > div {
    width: 560px;
  }
}
@media (max-width: 650px) {
  section.institucional_dados > div {
    width: 240px;
    gap: 45px 100px;
    padding: 75px 0 50px;
  }
}
section.institucional_transporte {
  position: relative;
  overflow: hidden;
}
section.institucional_transporte::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 83px);
  background: #2E4B2F;
}
section.institucional_transporte::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(calc(-50% + 490px)) skewX(-40deg);
  background: #253D26;
  width: 1500px;
  height: 96px;
}
section.institucional_transporte > div {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
}
section.institucional_transporte > div .image {
  position: absolute;
  top: 0;
  right: 580px;
  width: 910px;
  height: 445px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.institucional_transporte > div .text {
  width: 460px;
  padding: 148px 0 73px;
  margin: 0 0 0 auto;
}
section.institucional_transporte > div .text h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0 0 18px;
}
section.institucional_transporte > div .text p {
  font-family: outfit;
  font-weight: 100;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0 0 33px;
}
section.institucional_transporte > div .text .images {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
}
section.institucional_transporte > div .text .images > div {
  width: 133px;
  height: 110px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1250px) {
  section.institucional_transporte > div {
    width: 100%;
    padding: 0 35px;
  }
}
@media (max-width: 1100px) {
  section.institucional_transporte > div .image {
    width: calc(910px * 0.8);
    height: calc(445px * 0.8);
    right: 550px;
  }
  section.institucional_transporte > div .text {
    padding: 133px 0 50px;
  }
}
@media (max-width: 900px) {
  section.institucional_transporte > div .image {
    width: calc(910px * 0.6);
    height: calc(445px * 0.6);
    right: initial;
    left: -115px;
  }
  section.institucional_transporte > div .text {
    padding: 320px 0 50px;
    margin: 0 auto;
    text-align: center;
  }
  section.institucional_transporte > div .text .images {
    justify-content: center;
  }
}
@media (max-width: 550px) {
  section.institucional_transporte::before {
    height: calc(100% - 68px);
  }
  section.institucional_transporte::after {
    display: none;
  }
  section.institucional_transporte > div {
    padding: 0 25px;
  }
  section.institucional_transporte > div .image {
    width: calc(910px * 0.46);
    height: calc(445px * 0.46);
    left: -88px;
  }
  section.institucional_transporte > div .text {
    width: 100%;
    padding: 250px 0 63px;
  }
  section.institucional_transporte > div .text h2 {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 23px;
  }
  section.institucional_transporte > div .text h2 br {
    display: none;
  }
}
section.institucional_parceiros > div {
  padding: 98px 0 90px;
}
section.institucional_parceiros > div h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 38px;
  line-height: 42px;
  color: #242424;
  text-align: center;
  margin: 0 0 45px;
}
section.institucional_parceiros > div .carousel {
  width: calc((225px * 5) + (15px * 4));
  margin: 0 auto 50px;
  overflow: hidden;
}
section.institucional_parceiros > div .carousel .item {
  width: 225px;
  height: 115px;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  margin: 0 15px 0 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.institucional_parceiros > div .dots ul li {
  width: 12px;
  height: 12px;
  margin: 0 12px;
}
section.institucional_parceiros > div .dots ul li.slick-active button {
  background: #EF8800;
}
section.institucional_parceiros > div .dots ul li button {
  width: 100%;
  height: 100%;
  background: #DCDCDC;
  border-radius: 50%;
  margin: 0;
}
section.institucional_parceiros > div .dots ul li button:before {
  display: none;
}
@media (max-width: 1250px) {
  section.institucional_parceiros > div .carousel {
    width: calc((225px * 4) + (15px * 3));
  }
}
@media (max-width: 1000px) {
  section.institucional_parceiros > div .carousel {
    width: calc((225px * 3) + (15px * 2));
  }
}
@media (max-width: 750px) {
  section.institucional_parceiros > div {
    overflow: hidden;
    padding: 70px 0 60px;
  }
  section.institucional_parceiros > div h2 {
    font-size: 34px;
    line-height: 38px;
    margin: 0 0 30px;
  }
  section.institucional_parceiros > div .carousel {
    width: calc((225px * 2) + (15px * 1));
    overflow: initial;
  }
}
@media (max-width: 550px) {
  section.institucional_parceiros > div {
    padding: 100px 0 108px;
  }
  section.institucional_parceiros > div h2 {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 44px;
  }
  section.institucional_parceiros > div .carousel {
    width: 185px;
    margin: 0 auto 20px;
  }
  section.institucional_parceiros > div .carousel .item {
    width: 185px;
    height: 95px;
    margin: 0 10px 0 0;
  }
  section.institucional_parceiros > div .dots.no_mobile {
    display: none;
  }
}

section.header_title {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 415px;
  background-image: url(./../img/institucional/before_bg.png);
  background-size: cover;
  background-position: center;
  background-color: #2E4B2F;
  border-radius: 0 0 400px 0;
}
section.header_title > div {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 210px 0 30px;
}
section.header_title > div h1 {
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 4px;
  color: #EF8800;
  text-align: center;
  margin: 0 0 25px;
}
section.header_title > div h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 38px;
  line-height: 36px;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}
@media (max-width: 1250px) {
  section.header_title {
    border-radius: 0 0 150px 0;
  }
}
@media (max-width: 900px) {
  section.header_title {
    height: 340px;
  }
  section.header_title > div {
    padding: 160px 25px 30px;
  }
  section.header_title > div h1 {
    margin: 0 0 20px;
  }
  section.header_title > div h2 {
    font-size: 32px;
    line-height: 30px;
  }
}
@media (max-width: 650px) {
  section.header_title {
    background-position: calc(50% - 350px) center;
    height: 400px;
    border-radius: 0 0 80px 0;
  }
  section.header_title > div {
    padding: 172px 25px 30px;
  }
  section.header_title > div h1 {
    margin: 0 0 15px;
  }
  section.header_title > div h2 {
    font-size: 26px;
    line-height: 28px;
  }
}
section.filiais_mapa:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(((100% - 1200px) / 2) + 452px);
  height: 835px;
  background: #EF8800;
}
section.filiais_mapa > div {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  padding: 65px 0 40px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.filiais_mapa > div .text {
  width: 395px;
  padding: 20px 0 0;
}
section.filiais_mapa > div .text > p {
  max-width: 350px;
  font-family: outfit;
  font-weight: 100;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin: 0 0 45px;
}
section.filiais_mapa > div .text .dados {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #D1D1D1;
  padding: 0 0 35px;
}
section.filiais_mapa > div .text .dados > div {
  width: 155px;
}
section.filiais_mapa > div .text .dados > div h3 {
  font-family: outfit;
  font-weight: bold;
  font-size: 36px;
  line-height: 34px;
  color: #2E4B2F;
  margin: 0 0 9px;
}
section.filiais_mapa > div .text .dados > div p {
  font-family: outfit;
  font-weight: 100;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin: 0;
}
section.filiais_mapa > div .text .enderecos {
  padding: 35px 0 0;
}
section.filiais_mapa > div .text .enderecos > div {
  max-width: 305px;
  margin: 0 0 35px;
}
section.filiais_mapa > div .text .enderecos > div h3 {
  font-family: outfit;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin: 0 0 5px;
}
section.filiais_mapa > div .text .enderecos > div p {
  font-family: outfit;
  font-size: 14px;
  line-height: 18px;
  color: #6D6D6D;
  margin: 0;
}
section.filiais_mapa > div .mapa {
  position: relative;
  width: calc(755px * 1);
  height: calc(705px * 1);
  background-image: url(./../img/home/mapa[755x705].svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.filiais_mapa > div .mapa button {
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
  padding: 0;
}
section.filiais_mapa > div .mapa button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(14px * 1);
  height: calc(14px * 1);
  background: white;
  border-radius: 50%;
}
@keyframes circle_animate {
  0% {
    width: calc(14px * 1);
    height: calc(14px * 1);
  }
  30% {
    opacity: 1;
  }
  100% {
    width: calc(25px * 1);
    height: calc(25px * 1);
    opacity: 0;
  }
}
@keyframes circle_animate_bsb {
  0% {
    width: calc(9px * 1);
    height: calc(9px * 1);
  }
  30% {
    opacity: 1;
  }
  100% {
    width: calc(16px * 1);
    height: calc(16px * 1);
    opacity: 0;
  }
}
section.filiais_mapa > div .mapa button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(25px * 1);
  height: calc(25px * 1);
  border: 1px solid white;
  border-radius: 50%;
  animation-name: circle_animate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
section.filiais_mapa > div .mapa button.brasilia {
  top: calc(378px * 1);
  right: calc(230px * 1);
}
section.filiais_mapa > div .mapa button.brasilia::before {
  width: calc(9px * 1);
  height: calc(9px * 1);
}
section.filiais_mapa > div .mapa button.brasilia::after {
  width: calc(16px * 1);
  height: calc(16px * 1);
  animation-name: circle_animate_bsb;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
section.filiais_mapa > div .mapa button.goias {
  top: calc(395px * 1);
  right: calc(270px * 1);
}
section.filiais_mapa > div .mapa button.mato-grosso {
  top: calc(331px * 1);
  right: calc(370px * 1);
}
section.filiais_mapa > div .mapa button.mato-grosso-sul {
  top: calc(461px * 1);
  right: calc(350px * 1);
}
section.filiais_mapa > div .mapa button.parana {
  top: calc(541px * 1);
  right: calc(296px * 1);
}
section.filiais_mapa > div .mapa button.santa-catarina {
  top: calc(588px * 1);
  right: calc(267px * 1);
}
section.filiais_mapa > div .mapa button.rio-grande-sul {
  top: calc(633px * 1);
  right: calc(320px * 1);
}
section.filiais_mapa > div .mapa button.sao-paulo {
  top: calc(491px * 1);
  right: calc(250px * 1);
}
section.filiais_mapa > div .mapa button.rio-janeiro {
  top: calc(498px * 1);
  right: calc(134px * 1);
}
section.filiais_mapa > div .mapa button.minas-gerais {
  top: calc(491px * 1);
  right: calc(196px * 1);
}
section.filiais_mapa > div .mapa button.espirito-santo {
  top: calc(448px * 1);
  right: calc(99px * 1);
}
section.filiais_mapa > div .mapa button.bahia {
  top: calc(318px * 1);
  right: calc(124px * 1);
}
section.filiais_mapa > div .mapa button.sergipe {
  top: calc(290px * 1);
  right: calc(45px * 1);
}
section.filiais_mapa > div .mapa button.alagoas {
  top: calc(270px * 1);
  right: calc(28px * 1);
}
section.filiais_mapa > div .mapa button.pernambuco {
  top: calc(245px * 1);
  right: calc(56px * 1);
}
section.filiais_mapa > div .mapa button.paraiba {
  top: calc(223px * 1);
  right: calc(21px * 1);
}
section.filiais_mapa > div .mapa button.rio-grande-norte {
  top: calc(199px * 1);
  right: calc(31px * 1);
}
section.filiais_mapa > div .mapa button.ceara {
  top: calc(179px * 1);
  right: calc(85px * 1);
}
section.filiais_mapa > div .mapa button.piaui {
  top: calc(234px * 1);
  right: calc(130px * 1);
}
section.filiais_mapa > div .mapa button.maranhao {
  top: calc(179px * 1);
  right: calc(181px * 1);
}
section.filiais_mapa > div .mapa button.tocantins {
  top: calc(284px * 1);
  right: calc(236px * 1);
}
section.filiais_mapa > div .mapa button.para {
  top: calc(184px * 1);
  right: calc(317px * 1);
}
section.filiais_mapa > div .mapa button.amapa {
  top: calc(72px * 1);
  right: calc(298px * 1);
}
section.filiais_mapa > div .mapa button.roraima {
  top: calc(61px * 1);
  right: calc(464px * 1);
}
section.filiais_mapa > div .mapa button.amazonas {
  top: calc(175px * 1);
  right: calc(524px * 1);
}
section.filiais_mapa > div .mapa button.acre {
  top: calc(272px * 1);
  right: calc(609px * 1);
}
section.filiais_mapa > div .mapa button.rondonia {
  top: calc(292px * 1);
  right: calc(499px * 1);
}
@media (max-width: 1250px) {
  section.filiais_mapa > div {
    width: 1000px;
  }
  section.filiais_mapa > div .mapa {
    position: relative;
    width: calc(755px * 0.8);
    height: calc(705px * 0.8);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.filiais_mapa > div .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.filiais_mapa > div .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.8);
    height: calc(14px * 0.8);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.8);
      height: calc(14px * 0.8);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.8);
      height: calc(25px * 0.8);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.8);
      height: calc(9px * 0.8);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.8);
      height: calc(16px * 0.8);
      opacity: 0;
    }
  }
  section.filiais_mapa > div .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.8);
    height: calc(25px * 0.8);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.brasilia {
    top: calc(378px * 0.8);
    right: calc(230px * 0.8);
  }
  section.filiais_mapa > div .mapa button.brasilia::before {
    width: calc(9px * 0.8);
    height: calc(9px * 0.8);
  }
  section.filiais_mapa > div .mapa button.brasilia::after {
    width: calc(16px * 0.8);
    height: calc(16px * 0.8);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.goias {
    top: calc(395px * 0.8);
    right: calc(270px * 0.8);
  }
  section.filiais_mapa > div .mapa button.mato-grosso {
    top: calc(331px * 0.8);
    right: calc(370px * 0.8);
  }
  section.filiais_mapa > div .mapa button.mato-grosso-sul {
    top: calc(461px * 0.8);
    right: calc(350px * 0.8);
  }
  section.filiais_mapa > div .mapa button.parana {
    top: calc(541px * 0.8);
    right: calc(296px * 0.8);
  }
  section.filiais_mapa > div .mapa button.santa-catarina {
    top: calc(588px * 0.8);
    right: calc(267px * 0.8);
  }
  section.filiais_mapa > div .mapa button.rio-grande-sul {
    top: calc(633px * 0.8);
    right: calc(320px * 0.8);
  }
  section.filiais_mapa > div .mapa button.sao-paulo {
    top: calc(491px * 0.8);
    right: calc(250px * 0.8);
  }
  section.filiais_mapa > div .mapa button.rio-janeiro {
    top: calc(498px * 0.8);
    right: calc(134px * 0.8);
  }
  section.filiais_mapa > div .mapa button.minas-gerais {
    top: calc(491px * 0.8);
    right: calc(196px * 0.8);
  }
  section.filiais_mapa > div .mapa button.espirito-santo {
    top: calc(448px * 0.8);
    right: calc(99px * 0.8);
  }
  section.filiais_mapa > div .mapa button.bahia {
    top: calc(318px * 0.8);
    right: calc(124px * 0.8);
  }
  section.filiais_mapa > div .mapa button.sergipe {
    top: calc(290px * 0.8);
    right: calc(45px * 0.8);
  }
  section.filiais_mapa > div .mapa button.alagoas {
    top: calc(270px * 0.8);
    right: calc(28px * 0.8);
  }
  section.filiais_mapa > div .mapa button.pernambuco {
    top: calc(245px * 0.8);
    right: calc(56px * 0.8);
  }
  section.filiais_mapa > div .mapa button.paraiba {
    top: calc(223px * 0.8);
    right: calc(21px * 0.8);
  }
  section.filiais_mapa > div .mapa button.rio-grande-norte {
    top: calc(199px * 0.8);
    right: calc(31px * 0.8);
  }
  section.filiais_mapa > div .mapa button.ceara {
    top: calc(179px * 0.8);
    right: calc(85px * 0.8);
  }
  section.filiais_mapa > div .mapa button.piaui {
    top: calc(234px * 0.8);
    right: calc(130px * 0.8);
  }
  section.filiais_mapa > div .mapa button.maranhao {
    top: calc(179px * 0.8);
    right: calc(181px * 0.8);
  }
  section.filiais_mapa > div .mapa button.tocantins {
    top: calc(284px * 0.8);
    right: calc(236px * 0.8);
  }
  section.filiais_mapa > div .mapa button.para {
    top: calc(184px * 0.8);
    right: calc(317px * 0.8);
  }
  section.filiais_mapa > div .mapa button.amapa {
    top: calc(72px * 0.8);
    right: calc(298px * 0.8);
  }
  section.filiais_mapa > div .mapa button.roraima {
    top: calc(61px * 0.8);
    right: calc(464px * 0.8);
  }
  section.filiais_mapa > div .mapa button.amazonas {
    top: calc(175px * 0.8);
    right: calc(524px * 0.8);
  }
  section.filiais_mapa > div .mapa button.acre {
    top: calc(272px * 0.8);
    right: calc(609px * 0.8);
  }
  section.filiais_mapa > div .mapa button.rondonia {
    top: calc(292px * 0.8);
    right: calc(499px * 0.8);
  }
}
@media (max-width: 1050px) {
  section.filiais_mapa:before {
    display: none;
  }
  section.filiais_mapa > div {
    padding: 65px 35px 40px;
    width: 100%;
  }
  section.filiais_mapa > div .mapa {
    position: relative;
    width: calc(755px * 0.57);
    height: calc(705px * 0.57);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.filiais_mapa > div .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.filiais_mapa > div .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.57);
    height: calc(14px * 0.57);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.57);
      height: calc(14px * 0.57);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.57);
      height: calc(25px * 0.57);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.57);
      height: calc(9px * 0.57);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.57);
      height: calc(16px * 0.57);
      opacity: 0;
    }
  }
  section.filiais_mapa > div .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.57);
    height: calc(25px * 0.57);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.brasilia {
    top: calc(378px * 0.57);
    right: calc(230px * 0.57);
  }
  section.filiais_mapa > div .mapa button.brasilia::before {
    width: calc(9px * 0.57);
    height: calc(9px * 0.57);
  }
  section.filiais_mapa > div .mapa button.brasilia::after {
    width: calc(16px * 0.57);
    height: calc(16px * 0.57);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.goias {
    top: calc(395px * 0.57);
    right: calc(270px * 0.57);
  }
  section.filiais_mapa > div .mapa button.mato-grosso {
    top: calc(331px * 0.57);
    right: calc(370px * 0.57);
  }
  section.filiais_mapa > div .mapa button.mato-grosso-sul {
    top: calc(461px * 0.57);
    right: calc(350px * 0.57);
  }
  section.filiais_mapa > div .mapa button.parana {
    top: calc(541px * 0.57);
    right: calc(296px * 0.57);
  }
  section.filiais_mapa > div .mapa button.santa-catarina {
    top: calc(588px * 0.57);
    right: calc(267px * 0.57);
  }
  section.filiais_mapa > div .mapa button.rio-grande-sul {
    top: calc(633px * 0.57);
    right: calc(320px * 0.57);
  }
  section.filiais_mapa > div .mapa button.sao-paulo {
    top: calc(491px * 0.57);
    right: calc(250px * 0.57);
  }
  section.filiais_mapa > div .mapa button.rio-janeiro {
    top: calc(498px * 0.57);
    right: calc(134px * 0.57);
  }
  section.filiais_mapa > div .mapa button.minas-gerais {
    top: calc(491px * 0.57);
    right: calc(196px * 0.57);
  }
  section.filiais_mapa > div .mapa button.espirito-santo {
    top: calc(448px * 0.57);
    right: calc(99px * 0.57);
  }
  section.filiais_mapa > div .mapa button.bahia {
    top: calc(318px * 0.57);
    right: calc(124px * 0.57);
  }
  section.filiais_mapa > div .mapa button.sergipe {
    top: calc(290px * 0.57);
    right: calc(45px * 0.57);
  }
  section.filiais_mapa > div .mapa button.alagoas {
    top: calc(270px * 0.57);
    right: calc(28px * 0.57);
  }
  section.filiais_mapa > div .mapa button.pernambuco {
    top: calc(245px * 0.57);
    right: calc(56px * 0.57);
  }
  section.filiais_mapa > div .mapa button.paraiba {
    top: calc(223px * 0.57);
    right: calc(21px * 0.57);
  }
  section.filiais_mapa > div .mapa button.rio-grande-norte {
    top: calc(199px * 0.57);
    right: calc(31px * 0.57);
  }
  section.filiais_mapa > div .mapa button.ceara {
    top: calc(179px * 0.57);
    right: calc(85px * 0.57);
  }
  section.filiais_mapa > div .mapa button.piaui {
    top: calc(234px * 0.57);
    right: calc(130px * 0.57);
  }
  section.filiais_mapa > div .mapa button.maranhao {
    top: calc(179px * 0.57);
    right: calc(181px * 0.57);
  }
  section.filiais_mapa > div .mapa button.tocantins {
    top: calc(284px * 0.57);
    right: calc(236px * 0.57);
  }
  section.filiais_mapa > div .mapa button.para {
    top: calc(184px * 0.57);
    right: calc(317px * 0.57);
  }
  section.filiais_mapa > div .mapa button.amapa {
    top: calc(72px * 0.57);
    right: calc(298px * 0.57);
  }
  section.filiais_mapa > div .mapa button.roraima {
    top: calc(61px * 0.57);
    right: calc(464px * 0.57);
  }
  section.filiais_mapa > div .mapa button.amazonas {
    top: calc(175px * 0.57);
    right: calc(524px * 0.57);
  }
  section.filiais_mapa > div .mapa button.acre {
    top: calc(272px * 0.57);
    right: calc(609px * 0.57);
  }
  section.filiais_mapa > div .mapa button.rondonia {
    top: calc(292px * 0.57);
    right: calc(499px * 0.57);
  }
}
@media (max-width: 900px) {
  section.filiais_mapa > div {
    padding: 65px 20px 40px 35px;
  }
  section.filiais_mapa > div .text {
    width: 350px;
  }
  section.filiais_mapa > div .mapa {
    position: relative;
    width: calc(755px * 0.458);
    height: calc(705px * 0.458);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.filiais_mapa > div .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.filiais_mapa > div .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.458);
    height: calc(14px * 0.458);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.458);
      height: calc(14px * 0.458);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.458);
      height: calc(25px * 0.458);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.458);
      height: calc(9px * 0.458);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.458);
      height: calc(16px * 0.458);
      opacity: 0;
    }
  }
  section.filiais_mapa > div .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.458);
    height: calc(25px * 0.458);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.brasilia {
    top: calc(378px * 0.458);
    right: calc(230px * 0.458);
  }
  section.filiais_mapa > div .mapa button.brasilia::before {
    width: calc(9px * 0.458);
    height: calc(9px * 0.458);
  }
  section.filiais_mapa > div .mapa button.brasilia::after {
    width: calc(16px * 0.458);
    height: calc(16px * 0.458);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.goias {
    top: calc(395px * 0.458);
    right: calc(270px * 0.458);
  }
  section.filiais_mapa > div .mapa button.mato-grosso {
    top: calc(331px * 0.458);
    right: calc(370px * 0.458);
  }
  section.filiais_mapa > div .mapa button.mato-grosso-sul {
    top: calc(461px * 0.458);
    right: calc(350px * 0.458);
  }
  section.filiais_mapa > div .mapa button.parana {
    top: calc(541px * 0.458);
    right: calc(296px * 0.458);
  }
  section.filiais_mapa > div .mapa button.santa-catarina {
    top: calc(588px * 0.458);
    right: calc(267px * 0.458);
  }
  section.filiais_mapa > div .mapa button.rio-grande-sul {
    top: calc(633px * 0.458);
    right: calc(320px * 0.458);
  }
  section.filiais_mapa > div .mapa button.sao-paulo {
    top: calc(491px * 0.458);
    right: calc(250px * 0.458);
  }
  section.filiais_mapa > div .mapa button.rio-janeiro {
    top: calc(498px * 0.458);
    right: calc(134px * 0.458);
  }
  section.filiais_mapa > div .mapa button.minas-gerais {
    top: calc(491px * 0.458);
    right: calc(196px * 0.458);
  }
  section.filiais_mapa > div .mapa button.espirito-santo {
    top: calc(448px * 0.458);
    right: calc(99px * 0.458);
  }
  section.filiais_mapa > div .mapa button.bahia {
    top: calc(318px * 0.458);
    right: calc(124px * 0.458);
  }
  section.filiais_mapa > div .mapa button.sergipe {
    top: calc(290px * 0.458);
    right: calc(45px * 0.458);
  }
  section.filiais_mapa > div .mapa button.alagoas {
    top: calc(270px * 0.458);
    right: calc(28px * 0.458);
  }
  section.filiais_mapa > div .mapa button.pernambuco {
    top: calc(245px * 0.458);
    right: calc(56px * 0.458);
  }
  section.filiais_mapa > div .mapa button.paraiba {
    top: calc(223px * 0.458);
    right: calc(21px * 0.458);
  }
  section.filiais_mapa > div .mapa button.rio-grande-norte {
    top: calc(199px * 0.458);
    right: calc(31px * 0.458);
  }
  section.filiais_mapa > div .mapa button.ceara {
    top: calc(179px * 0.458);
    right: calc(85px * 0.458);
  }
  section.filiais_mapa > div .mapa button.piaui {
    top: calc(234px * 0.458);
    right: calc(130px * 0.458);
  }
  section.filiais_mapa > div .mapa button.maranhao {
    top: calc(179px * 0.458);
    right: calc(181px * 0.458);
  }
  section.filiais_mapa > div .mapa button.tocantins {
    top: calc(284px * 0.458);
    right: calc(236px * 0.458);
  }
  section.filiais_mapa > div .mapa button.para {
    top: calc(184px * 0.458);
    right: calc(317px * 0.458);
  }
  section.filiais_mapa > div .mapa button.amapa {
    top: calc(72px * 0.458);
    right: calc(298px * 0.458);
  }
  section.filiais_mapa > div .mapa button.roraima {
    top: calc(61px * 0.458);
    right: calc(464px * 0.458);
  }
  section.filiais_mapa > div .mapa button.amazonas {
    top: calc(175px * 0.458);
    right: calc(524px * 0.458);
  }
  section.filiais_mapa > div .mapa button.acre {
    top: calc(272px * 0.458);
    right: calc(609px * 0.458);
  }
  section.filiais_mapa > div .mapa button.rondonia {
    top: calc(292px * 0.458);
    right: calc(499px * 0.458);
  }
}
@media (max-width: 750px) {
  section.filiais_mapa > div {
    padding: 65px 35px 75px;
  }
  section.filiais_mapa > div .mapa {
    margin: 0 auto;
    position: relative;
    width: calc(755px * 0.63);
    height: calc(705px * 0.63);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.filiais_mapa > div .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.filiais_mapa > div .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.63);
    height: calc(14px * 0.63);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.63);
      height: calc(14px * 0.63);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.63);
      height: calc(25px * 0.63);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.63);
      height: calc(9px * 0.63);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.63);
      height: calc(16px * 0.63);
      opacity: 0;
    }
  }
  section.filiais_mapa > div .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.63);
    height: calc(25px * 0.63);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.brasilia {
    top: calc(378px * 0.63);
    right: calc(230px * 0.63);
  }
  section.filiais_mapa > div .mapa button.brasilia::before {
    width: calc(9px * 0.63);
    height: calc(9px * 0.63);
  }
  section.filiais_mapa > div .mapa button.brasilia::after {
    width: calc(16px * 0.63);
    height: calc(16px * 0.63);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.goias {
    top: calc(395px * 0.63);
    right: calc(270px * 0.63);
  }
  section.filiais_mapa > div .mapa button.mato-grosso {
    top: calc(331px * 0.63);
    right: calc(370px * 0.63);
  }
  section.filiais_mapa > div .mapa button.mato-grosso-sul {
    top: calc(461px * 0.63);
    right: calc(350px * 0.63);
  }
  section.filiais_mapa > div .mapa button.parana {
    top: calc(541px * 0.63);
    right: calc(296px * 0.63);
  }
  section.filiais_mapa > div .mapa button.santa-catarina {
    top: calc(588px * 0.63);
    right: calc(267px * 0.63);
  }
  section.filiais_mapa > div .mapa button.rio-grande-sul {
    top: calc(633px * 0.63);
    right: calc(320px * 0.63);
  }
  section.filiais_mapa > div .mapa button.sao-paulo {
    top: calc(491px * 0.63);
    right: calc(250px * 0.63);
  }
  section.filiais_mapa > div .mapa button.rio-janeiro {
    top: calc(498px * 0.63);
    right: calc(134px * 0.63);
  }
  section.filiais_mapa > div .mapa button.minas-gerais {
    top: calc(491px * 0.63);
    right: calc(196px * 0.63);
  }
  section.filiais_mapa > div .mapa button.espirito-santo {
    top: calc(448px * 0.63);
    right: calc(99px * 0.63);
  }
  section.filiais_mapa > div .mapa button.bahia {
    top: calc(318px * 0.63);
    right: calc(124px * 0.63);
  }
  section.filiais_mapa > div .mapa button.sergipe {
    top: calc(290px * 0.63);
    right: calc(45px * 0.63);
  }
  section.filiais_mapa > div .mapa button.alagoas {
    top: calc(270px * 0.63);
    right: calc(28px * 0.63);
  }
  section.filiais_mapa > div .mapa button.pernambuco {
    top: calc(245px * 0.63);
    right: calc(56px * 0.63);
  }
  section.filiais_mapa > div .mapa button.paraiba {
    top: calc(223px * 0.63);
    right: calc(21px * 0.63);
  }
  section.filiais_mapa > div .mapa button.rio-grande-norte {
    top: calc(199px * 0.63);
    right: calc(31px * 0.63);
  }
  section.filiais_mapa > div .mapa button.ceara {
    top: calc(179px * 0.63);
    right: calc(85px * 0.63);
  }
  section.filiais_mapa > div .mapa button.piaui {
    top: calc(234px * 0.63);
    right: calc(130px * 0.63);
  }
  section.filiais_mapa > div .mapa button.maranhao {
    top: calc(179px * 0.63);
    right: calc(181px * 0.63);
  }
  section.filiais_mapa > div .mapa button.tocantins {
    top: calc(284px * 0.63);
    right: calc(236px * 0.63);
  }
  section.filiais_mapa > div .mapa button.para {
    top: calc(184px * 0.63);
    right: calc(317px * 0.63);
  }
  section.filiais_mapa > div .mapa button.amapa {
    top: calc(72px * 0.63);
    right: calc(298px * 0.63);
  }
  section.filiais_mapa > div .mapa button.roraima {
    top: calc(61px * 0.63);
    right: calc(464px * 0.63);
  }
  section.filiais_mapa > div .mapa button.amazonas {
    top: calc(175px * 0.63);
    right: calc(524px * 0.63);
  }
  section.filiais_mapa > div .mapa button.acre {
    top: calc(272px * 0.63);
    right: calc(609px * 0.63);
  }
  section.filiais_mapa > div .mapa button.rondonia {
    top: calc(292px * 0.63);
    right: calc(499px * 0.63);
  }
}
@media (max-width: 550px) {
  section.filiais_mapa > div {
    padding: 30px 25px 75px;
  }
  section.filiais_mapa > div .text > p {
    margin: 0 0 60px;
  }
  section.filiais_mapa > div .text .dados {
    padding: 0 0 50px;
  }
  section.filiais_mapa > div .text .dados > div {
    width: 130px;
  }
  section.filiais_mapa > div .text .enderecos > div {
    margin: 0 0 30px;
  }
  section.filiais_mapa > div .mapa {
    position: relative;
    width: calc(755px * 0.41);
    height: calc(705px * 0.41);
    background-image: url(./../img/home/mapa[755x705].svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 25px auto 0;
  }
  section.filiais_mapa > div .mapa button {
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    padding: 0;
  }
  section.filiais_mapa > div .mapa button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(14px * 0.41);
    height: calc(14px * 0.41);
    background: white;
    border-radius: 50%;
  }
  @keyframes circle_animate {
    0% {
      width: calc(14px * 0.41);
      height: calc(14px * 0.41);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(25px * 0.41);
      height: calc(25px * 0.41);
      opacity: 0;
    }
  }
  @keyframes circle_animate_bsb {
    0% {
      width: calc(9px * 0.41);
      height: calc(9px * 0.41);
    }
    30% {
      opacity: 1;
    }
    100% {
      width: calc(16px * 0.41);
      height: calc(16px * 0.41);
      opacity: 0;
    }
  }
  section.filiais_mapa > div .mapa button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(25px * 0.41);
    height: calc(25px * 0.41);
    border: 1px solid white;
    border-radius: 50%;
    animation-name: circle_animate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.brasilia {
    top: calc(378px * 0.41);
    right: calc(230px * 0.41);
  }
  section.filiais_mapa > div .mapa button.brasilia::before {
    width: calc(9px * 0.41);
    height: calc(9px * 0.41);
  }
  section.filiais_mapa > div .mapa button.brasilia::after {
    width: calc(16px * 0.41);
    height: calc(16px * 0.41);
    animation-name: circle_animate_bsb;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  section.filiais_mapa > div .mapa button.goias {
    top: calc(395px * 0.41);
    right: calc(270px * 0.41);
  }
  section.filiais_mapa > div .mapa button.mato-grosso {
    top: calc(331px * 0.41);
    right: calc(370px * 0.41);
  }
  section.filiais_mapa > div .mapa button.mato-grosso-sul {
    top: calc(461px * 0.41);
    right: calc(350px * 0.41);
  }
  section.filiais_mapa > div .mapa button.parana {
    top: calc(541px * 0.41);
    right: calc(296px * 0.41);
  }
  section.filiais_mapa > div .mapa button.santa-catarina {
    top: calc(588px * 0.41);
    right: calc(267px * 0.41);
  }
  section.filiais_mapa > div .mapa button.rio-grande-sul {
    top: calc(633px * 0.41);
    right: calc(320px * 0.41);
  }
  section.filiais_mapa > div .mapa button.sao-paulo {
    top: calc(491px * 0.41);
    right: calc(250px * 0.41);
  }
  section.filiais_mapa > div .mapa button.rio-janeiro {
    top: calc(498px * 0.41);
    right: calc(134px * 0.41);
  }
  section.filiais_mapa > div .mapa button.minas-gerais {
    top: calc(491px * 0.41);
    right: calc(196px * 0.41);
  }
  section.filiais_mapa > div .mapa button.espirito-santo {
    top: calc(448px * 0.41);
    right: calc(99px * 0.41);
  }
  section.filiais_mapa > div .mapa button.bahia {
    top: calc(318px * 0.41);
    right: calc(124px * 0.41);
  }
  section.filiais_mapa > div .mapa button.sergipe {
    top: calc(290px * 0.41);
    right: calc(45px * 0.41);
  }
  section.filiais_mapa > div .mapa button.alagoas {
    top: calc(270px * 0.41);
    right: calc(28px * 0.41);
  }
  section.filiais_mapa > div .mapa button.pernambuco {
    top: calc(245px * 0.41);
    right: calc(56px * 0.41);
  }
  section.filiais_mapa > div .mapa button.paraiba {
    top: calc(223px * 0.41);
    right: calc(21px * 0.41);
  }
  section.filiais_mapa > div .mapa button.rio-grande-norte {
    top: calc(199px * 0.41);
    right: calc(31px * 0.41);
  }
  section.filiais_mapa > div .mapa button.ceara {
    top: calc(179px * 0.41);
    right: calc(85px * 0.41);
  }
  section.filiais_mapa > div .mapa button.piaui {
    top: calc(234px * 0.41);
    right: calc(130px * 0.41);
  }
  section.filiais_mapa > div .mapa button.maranhao {
    top: calc(179px * 0.41);
    right: calc(181px * 0.41);
  }
  section.filiais_mapa > div .mapa button.tocantins {
    top: calc(284px * 0.41);
    right: calc(236px * 0.41);
  }
  section.filiais_mapa > div .mapa button.para {
    top: calc(184px * 0.41);
    right: calc(317px * 0.41);
  }
  section.filiais_mapa > div .mapa button.amapa {
    top: calc(72px * 0.41);
    right: calc(298px * 0.41);
  }
  section.filiais_mapa > div .mapa button.roraima {
    top: calc(61px * 0.41);
    right: calc(464px * 0.41);
  }
  section.filiais_mapa > div .mapa button.amazonas {
    top: calc(175px * 0.41);
    right: calc(524px * 0.41);
  }
  section.filiais_mapa > div .mapa button.acre {
    top: calc(272px * 0.41);
    right: calc(609px * 0.41);
  }
  section.filiais_mapa > div .mapa button.rondonia {
    top: calc(292px * 0.41);
    right: calc(499px * 0.41);
  }
}
section.filiais_galeria {
  overflow: hidden;
  padding: 0 0 82px;
}
section.filiais_galeria .carousel {
  width: 730px;
  margin: 0 auto 33px;
}
section.filiais_galeria .carousel .item {
  width: 730px;
  height: 380px;
  margin: 0 24px 0 0;
  background-position: center;
  background-size: cover;
  position: relative;
}
section.filiais_galeria .carousel .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(./../img/lupa_zoom.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px;
  opacity: 0;
  transition: all 0.3s;
}
section.filiais_galeria .carousel .item a:hover {
  opacity: 1;
}
section.filiais_galeria .dots ul li {
  width: 12px;
  height: 12px;
  margin: 0 12px;
}
section.filiais_galeria .dots ul li.slick-active button {
  background: #2E4B2F;
}
section.filiais_galeria .dots ul li button {
  width: 100%;
  height: 100%;
  background: #D1D1D1;
  border-radius: 50%;
  margin: 0;
}
section.filiais_galeria .dots ul li button:before {
  display: none;
}
@media (max-width: 1000px) {
  section.filiais_galeria {
    padding: 0 0 70px;
  }
  section.filiais_galeria .carousel {
    width: calc(730px * 0.6);
    margin: 0 auto 21px;
  }
  section.filiais_galeria .carousel .item {
    width: calc(730px * 0.6);
    height: calc(380px * 0.6);
    margin: 0 15px 0 0;
  }
}
@media (max-width: 550px) {
  section.filiais_galeria .carousel {
    width: calc(730px * 0.3465);
    margin: 0 auto 21px;
  }
  section.filiais_galeria .carousel .item {
    width: calc(730px * 0.3465);
    height: calc(380px * 0.3465);
    margin: 0 8px 0 0;
  }
}

section.produtos_content > div {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 75px 0 125px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
section.produtos_content > div svg {
  position: absolute;
}
section.produtos_content > div .filtro {
  position: sticky;
  top: 100px;
  width: 300px;
  padding: 15px 0 0;
}
section.produtos_content > div .filtro button {
  display: block;
  position: relative;
  border: none;
  background: transparent;
  padding: 5px 20px 5px 59px;
  font-family: outfit;
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 3px;
  color: #6D6D6D;
  margin: 0 0 40px;
  text-align: left;
}
section.produtos_content > div .filtro button.active {
  font-weight: bold;
  color: #2E4B2F;
}
section.produtos_content > div .filtro button.active svg path {
  fill: #2E4B2F;
}
section.produtos_content > div .filtro button svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.produtos_content > div .filtro a.download {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 285px;
  max-width: 100%;
  height: 50px;
  border: 1px solid #B5B5B5;
  border-radius: 10px;
  font-family: outfit;
  font-weight: bold;
  font-size: 16px;
  color: #2E4B2F;
  margin: 50px 0 0;
}
section.produtos_content > div .filtro a.download:hover {
  background: #2E4B2F;
  color: white;
}
section.produtos_content > div .filtro a.download > svg {
  position: relative;
  margin: 0 13px 0 0;
}
section.produtos_content > div .lista {
  width: 810px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 42px 22px;
}
section.produtos_content > div .lista .item {
  position: relative;
  width: 255px;
  height: 260px;
}
section.produtos_content > div .lista .item * {
  cursor: pointer;
}
section.produtos_content > div .lista .item[data-open=false] .name h2 {
  background-image: url(./../img/produtos/plus.svg);
}
section.produtos_content > div .lista .item[data-open=true] {
  z-index: 2;
}
section.produtos_content > div .lista .item[data-open=true] .name h2 {
  background-image: url(./../img/produtos/less.svg);
}
section.produtos_content > div .lista .item[data-open=true] .name > div {
  display: block;
}
section.produtos_content > div .lista .item[data-open=none] .name h2 {
  padding-right: 10px !important;
}
section.produtos_content > div .lista .item:hover .name h2 {
  color: #ef8800;
}
section.produtos_content > div .lista .item .image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 205px;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 3px 29px rgba(0, 0, 0, 0.16);
}
section.produtos_content > div .lista .item .name {
  position: relative;
  padding: 55px 0 0;
  background: white;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 3px 29px rgba(0, 0, 0, 0.16);
}
section.produtos_content > div .lista .item .name:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background: white;
  transform: translateY(-100%);
}
section.produtos_content > div .lista .item .name h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 55px;
  font-family: outfit;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 4px;
  color: #2E4B2F;
  margin: 0;
  padding: 0 45px 0 25px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  transition: all 0.3s;
}
section.produtos_content > div .lista .item .name > div {
  display: none;
  padding: 0 25px 35px;
}
section.produtos_content > div .lista .item .name > div p {
  font-family: outfit;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #2E4B2F;
  margin: 0;
}
@media (max-width: 1250px) {
  section.produtos_content > div {
    padding: 75px 25px 125px;
    width: 100%;
  }
  section.produtos_content > div .lista {
    width: 795px;
    gap: 42px 15px;
  }
}
@media (max-width: 1150px) {
  section.produtos_content > div .lista {
    width: 525px;
  }
}
@media (max-width: 900px) {
  section.produtos_content > div {
    width: 525px;
    padding: 75px 0 125px;
  }
  section.produtos_content > div .filtro {
    top: initial;
    position: relative;
    z-index: 3;
    width: 310px;
    margin: 0 auto 35px;
    padding: 55px 0 0;
    border-radius: 10px;
    height: 0;
  }
  section.produtos_content > div .filtro[data-open=false] button, section.produtos_content > div .filtro[data-open=false] a {
    opacity: 0;
    pointer-events: none;
  }
  section.produtos_content > div .filtro button {
    font-size: 16px;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 5px 20px 5px 55px;
    background: white;
  }
  section.produtos_content > div .filtro button:nth-child(1) svg {
    width: 18px;
  }
  section.produtos_content > div .filtro button:nth-child(2) svg {
    width: 20px;
  }
  section.produtos_content > div .filtro button:nth-child(3) svg {
    width: 18px;
  }
  section.produtos_content > div .filtro button.active {
    opacity: 1 !important;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    border: 1px solid #9A9A9A;
    background-image: url(./../img/select_2.svg);
    background-repeat: no-repeat;
    background-position: calc( 100% - 14px) center;
  }
  section.produtos_content > div .filtro button svg {
    left: 22px;
    height: auto;
  }
  section.produtos_content > div .filtro a.download {
    margin: 0;
    border-radius: 0 0 10px 10px;
    width: 100%;
    background: white;
    border: none;
  }
  section.produtos_content > div .lista {
    width: 100%;
  }
}
@media (max-width: 550px) {
  section.produtos_content > div {
    width: 100%;
    padding: 35px 0 105px;
  }
  section.produtos_content > div .lista {
    width: 100%;
    justify-content: center;
    padding: 0 25px;
    gap: 25px 14px;
  }
  section.produtos_content > div .lista .item {
    width: 145px;
    height: 152px;
  }
  section.produtos_content > div .lista .item .image {
    height: 120px;
  }
  section.produtos_content > div .lista .item .name {
    padding: 32px 0 0;
  }
  section.produtos_content > div .lista .item .name h2 {
    height: 32px;
    font-size: 11px;
    line-height: 10px;
    padding: 0 30px 0 15px;
    background-position: calc(100% - 12px) center;
    background-size: 18px;
  }
  section.produtos_content > div .lista .item .name > div {
    padding: 0 15px 15px;
  }
  section.produtos_content > div .lista .item .name > div p {
    font-size: 11px;
    line-height: 12px;
  }
}

section.contato_header {
  background-image: url(./../img/institucional/before_bg.png);
  background-size: cover;
  background-position: center;
  background-color: #2E4B2F;
  border-radius: 0 0 400px 0;
}
section.contato_header > div {
  width: 1200px;
  margin: 0 auto;
  padding: 200px 0 52px;
}
section.contato_header > div h1 {
  font-family: outfit;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: center;
  color: #EF8800;
  margin: 0 0 23px;
}
section.contato_header > div h2 {
  font-family: outfit;
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
section.contato_header > div > div {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 120px;
  padding: 62px 0 0;
}
section.contato_header > div > div .item {
  width: 210px;
}
section.contato_header > div > div .item h3 {
  font-family: outfit;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  margin: 0 0 5px;
}
section.contato_header > div > div .item > p {
  font-family: outfit;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin: 0;
  opacity: 0.65;
}
section.contato_header > div > div .item > a.ver_mapa {
  font-family: outfit;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin: 0;
  opacity: 0.65;
  text-decoration: underline;
}
section.contato_header > div > div .item .telefones {
  margin: 19px 0 0;
}
section.contato_header > div > div .item .telefones a {
  position: relative;
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-family: outfit;
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 5px;
}
section.contato_header > div > div .item .telefones a.telefone {
  color: #EF8800;
}
section.contato_header > div > div .item .telefones a.whatsapp {
  color: #A6D8AA;
  padding: 0 22px 0 0;
}
section.contato_header > div > div .item .telefones a svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1500px) {
  section.contato_header {
    border-radius: 0 0 150px 0;
  }
}
@media (max-width: 1250px) {
  section.contato_header > div {
    width: 100%;
    margin: 0 auto;
    padding: 200px 35px 52px;
  }
  section.contato_header > div > div {
    justify-content: space-between;
    gap: 25px 10px;
  }
}
@media (max-width: 850px) {
  section.contato_header > div {
    padding: 155px 35px 40px;
  }
  section.contato_header > div h2 {
    font-size: 32px;
    line-height: 32px;
  }
  section.contato_header > div > div {
    padding: 50px 0 0;
  }
}
@media (max-width: 550px) {
  section.contato_header {
    border-radius: 0 0 80px 0;
    background-position: 1480px center;
  }
  section.contato_header > div {
    padding: 170px 25px 50px;
  }
  section.contato_header > div h1 {
    margin: 0 0 18px;
  }
  section.contato_header > div h2 {
    font-size: 26px;
    line-height: 28px;
  }
  section.contato_header > div > div .item {
    width: 100%;
    max-width: 300px;
  }
  section.contato_header > div > div .item .telefones {
    margin: 7px 0 0;
  }
}
section.contato_content {
  overflow: hidden;
}
section.contato_content > div {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 90px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.contato_content > div::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -265px;
  left: -200px;
  width: 474px;
  height: 474px;
  background-image: url(./../img/contato/bg_map.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.contato_content > div > svg {
  position: absolute;
  left: -550px;
  bottom: -630px;
  pointer-events: none;
}
section.contato_content > div .mapa {
  position: relative;
  background: #1C2B1D;
  width: 540px;
  height: 450px;
}
section.contato_content > div .mapa::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -75px;
  right: -97px;
  width: 377px;
  height: 377px;
  background-image: url(./../img/contato/bg_map.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.contato_content > div > h2 {
  width: 275px;
  font-family: outfit;
  font-weight: 300;
  font-size: 26px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}
section.contato_content > div form {
  width: 810px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.contato_content > div form h2 {
  font-family: outfit;
  font-weight: normal;
  font-size: 24px;
  line-height: 26px;
  color: #000000;
  margin: 0 0 35px;
}
section.contato_content > div form .item {
  position: relative;
  font-size: 16px;
  width: 100%;
  margin: 0 0 13px;
}
section.contato_content > div form .item input {
  font-family: outfit;
  border: 1px solid #C1C1C1;
  outline: none;
  width: 100%;
  min-width: 100px;
  height: 50px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-appearance: none;
  padding: 12px 20px 0;
  border-radius: 4px;
  color: #2E4B2F;
}
section.contato_content > div form .item input::placeholder {
  color: transparent;
}
section.contato_content > div form .item input:required:invalid + label:before {
  content: "*";
}
section.contato_content > div form .item input:focus + label, section.contato_content > div form .item input:not(:placeholder-shown) + label {
  font-size: 0.8em;
  top: 10px;
}
section.contato_content > div form .item label {
  font-family: outfit;
  pointer-events: none;
  position: absolute;
  left: 20px;
  top: 50%;
  line-height: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin: 0;
  color: #2E4B2F;
}
section.contato_content > div form .item select {
  font-family: outfit;
  border: 1px solid #C1C1C1;
  outline: none;
  width: 100%;
  min-width: 100px;
  height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  background-image: url(./../img/select_green.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) center;
  color: #2E4B2F;
}
section.contato_content > div form .item textarea {
  font-family: outfit;
  border: 1px solid #C1C1C1;
  outline: none;
  width: 100%;
  min-width: 100px;
  height: calc(50px * 2);
  padding: calc(20px / 2) 20px;
  border-radius: 4px;
  color: #2E4B2F;
}
section.contato_content > div form .item textarea::placeholder {
  color: #2E4B2F;
}
section.contato_content > div form .item.half {
  width: calc((100% - 16px) / 2);
}
section.contato_content > div form .checkbox {
  width: 100%;
  margin: 0 0 22px;
}
section.contato_content > div form .checkbox input {
  display: none;
}
section.contato_content > div form .checkbox input:checked + label::before {
  background-color: white;
  background-image: url(./../img/checked.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
section.contato_content > div form .checkbox label {
  position: relative;
  padding: 0 0 0 30px;
  font-family: outfit;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #919191;
  margin: 0;
}
section.contato_content > div form .checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #707070;
}
section.contato_content > div form button {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 6px;
  background: #EF8800;
  color: white;
  text-transform: uppercase;
  font-family: outfit;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
  transition: all 0.2s;
}
section.contato_content > div form button:hover {
  letter-spacing: 1px;
}
@media (max-width: 1250px) {
  section.contato_content > div {
    padding: 70px 0 30px;
    width: 540px;
  }
  section.contato_content > div::before {
    display: none;
  }
  section.contato_content > div > svg {
    display: none;
  }
  section.contato_content > div > h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 40px;
  }
  section.contato_content > div .mapa {
    order: 1;
    width: 100%;
  }
  section.contato_content > div form {
    order: 0;
    width: 100%;
    margin: 0 0 70px;
  }
}
@media (max-width: 650px) {
  section.contato_content > div {
    width: 100%;
    padding: 65px 25px 55px;
  }
  section.contato_content > div .mapa {
    height: 305px;
  }
  section.contato_content > div .mapa::before {
    display: none;
  }
  section.contato_content > div > h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 25px;
  }
  section.contato_content > div form {
    margin: 0 0 50px;
  }
  section.contato_content > div form h2 {
    margin: 0 0 30px;
  }
  section.contato_content > div form .item.half {
    width: 100%;
  }
}

@keyframes horizontal_animate {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes vertical_animate {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}
section.content_404 {
  border-top: 200px solid #1c2b1d;
  padding: 150px 0 100px;
}
section.content_404 svg {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}
section.content_404 svg * {
  fill: #1C2B1D;
}
section.content_404 p {
  font-size: 25px;
  font-weight: 300;
  color: #1C2B1D;
  text-align: center;
  margin: 0;
}
@media (max-width: 600px) {
  section.content_404 {
    border-top: 120px solid #1c2b1d;
    padding: 80px 0 60px;
  }
  section.content_404 svg {
    width: 120px;
  }
  section.content_404 p {
    font-size: 20px;
  }
}

section.cadastro-realizado {
  padding: 38px 25px 0;
}
section.cadastro-realizado .logo {
  width: 200px;
  height: 150px;
  border: 1px solid #C4C4C4;
  margin: 0 auto 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.cadastro-realizado > svg {
  margin: 0 auto 25px;
  display: block;
}
section.cadastro-realizado h1 {
  font-family: opensans;
  font-weight: 300;
  font-size: 34px;
  line-height: 36px;
  max-width: 453px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 30px;
}
section.cadastro-realizado p {
  font-family: opensans;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
section.cadastro-realizado a.voltar {
  display: block;
  width: 220px;
  height: 50px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #373737;
  font-family: opensans;
  font-weight: bold;
  font-size: 18px;
  color: #6A6A6A;
  text-transform: uppercase;
  margin: 0 auto;
}
@media (max-width: 550px) {
  section.cadastro-realizado h1 {
    font-size: 26px;
    line-height: 34px;
  }
  section.cadastro-realizado p {
    font-size: 18px;
    line-height: 25px;
  }
}

section.politica_content {
  border-top: 180px solid #1c2b1d;
}
section.politica_content > div {
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0 50px;
}
section.politica_content > div h1 {
  font-family: outfit;
  font-size: 35px;
  margin: 0 0 25px;
}
section.politica_content > div .content * {
  font-family: outfit;
  font-size: 16px;
  line-height: 20px;
}
section.politica_content > div .content img {
  display: none;
}
@media (max-width: 1250px) {
  section.politica_content > div {
    width: 100%;
    padding: 100px 35px 50px;
  }
}
@media (max-width: 850px) {
  section.politica_content {
    border-top: 130px solid #1c2b1d;
  }
}
@media (max-width: 650px) {
  section.politica_content {
    border-top: 110px solid #1c2b1d;
  }
  section.politica_content > div {
    padding: 70px 25px 50px;
  }
  section.politica_content > div h1 {
    font-size: 27px;
  }
  section.politica_content > div .content * {
    font-size: 14px;
  }
}
section.politica_modal {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #1c2b1d;
  z-index: 20;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 12px black;
}
section.politica_modal[active=false] {
  transform: translateY(100%);
}
section.politica_modal .content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
section.politica_modal .content p {
  color: white;
  font-size: 12px;
  margin: 0;
  width: 800px;
}
section.politica_modal .content p a {
  color: white;
  text-decoration: revert;
}
section.politica_modal .content button {
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  background: #ef8800;
  color: white;
}
@media (max-width: 1250px) {
  section.politica_modal .content {
    width: 950px;
  }
  section.politica_modal .content p {
    width: 700px;
  }
}
@media (max-width: 1000px) {
  section.politica_modal .content {
    width: 750px;
  }
  section.politica_modal .content p {
    width: 590px;
  }
}
@media (max-width: 800px) {
  section.politica_modal .content {
    width: 600px;
    justify-content: center;
  }
  section.politica_modal .content p {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media (max-width: 650px) {
  section.politica_modal .content {
    width: 100%;
    padding: 20px;
  }
  section.politica_modal .content p {
    font-size: 11px;
    margin: 0 0 15px;
  }
  section.politica_modal .content button {
    padding: 10px 25px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=principal.css.map */
