:root {
  --gray: #58585A;
  --l-gray: #818285;
  --l-gray-2: #F5F5F5;
  --d-blue: #02447D;
  --l-blue: #38C6F1;
  --l-white: #FCFCFF;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 300;
  color: var(--d-blue);
}

a {
  text-decoration: none;
}
a.btn_blue {
  background-color: var(--d-blue);
  color: white;
  font-size: 16px;
  font-weight: 700;
}
a.btn_blue-light {
  background-color: var(--l-blue);
}

p {
  margin: 0 0 1rem 0;
  line-height: 28px;
}

section {
  position: relative;
}

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

.hamburger:hover {
  cursor: pointer;
}

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

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

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

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

@media (min-width: 1201px) {
  .mobile {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .mobile {
    display: block !important;
  }
}

.mobile_m {
  display: none;
}
.mobile_m.active {
  display: block;
}

@media (max-width: 1200px) {
  .desktop {
    display: none !important;
  }
}

.modal_ {
  background: rgba(0, 0, 0, 0.328);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}
.modal_.active {
  opacity: 1;
  visibility: visible;
}

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

header {
  background: white;
  padding: 0 0 1rem;
  position: relative;
}
@media (max-width: 1200px) {
  header {
    min-height: 101px;
  }
}
@media (max-width: 765px) {
  header {
    padding-top: 1rem;
  }
}
header .area {
  text-align: end;
  background-color: var(--l-gray-2);
  padding: 3px 0;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 765px) {
  header .area {
    display: none;
  }
}
header .area a {
  font-size: 12px;
  text-decoration: none;
  display: block;
  color: var(--gray);
}
header span.buscar {
  position: absolute;
  right: 13px;
  top: 64px;
  cursor: pointer;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  color: var(--gray);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  position: relative;
  font-weight: 500;
}
header nav ul li a::before {
  content: "";
  width: 0%;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  background-color: var(--gray);
  opacity: 0;
  transition: all 500ms ease;
}
header nav ul li a:hover {
  color: var(--d-blue);
}
header nav ul li a:hover::before {
  opacity: 1;
  width: 108%;
}
@media (max-width: 1200px) {
  header nav.menu_mob {
    position: relative;
    z-index: 99999;
    background: var(--d-blue);
    height: 100vh;
    position: absolute;
    left: 0;
    top: 98px;
    bottom: 0;
    right: 0;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    margin-inline-start: -300px;
    transition: all 0.4s ease;
    padding-block-start: 3rem;
    text-align: center;
  }
  header nav.menu_mob .logo {
    position: absolute;
    top: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 2rem;
    width: 100%;
  }
  header nav.menu_mob .logo img {
    width: 250px;
  }
  header nav.menu_mob ul {
    padding: 0;
    display: block;
  }
  header nav.menu_mob ul li {
    list-style: none;
    padding-block: 0.7rem;
    display: block;
  }
  header nav.menu_mob ul li a {
    color: white;
    font-size: 16px;
  }
  header nav.active {
    opacity: 1;
    pointer-events: all;
    margin-inline-start: 0;
  }
}

footer {
  position: relative;
  min-height: 300px;
  background: white;
  padding-top: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}
footer span {
  display: flex;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  footer span {
    text-align: center;
    display: block;
    margin-bottom: 14px;
  }
}
footer span div {
  margin-left: 29px;
}
@media (max-width: 768px) {
  footer span div {
    margin-left: 0;
    margin-top: 10px;
  }
}
footer span div a {
  margin-right: 8px;
}
footer span:nth-child(3) div {
  margin-left: 42px;
}
@media (max-width: 768px) {
  footer span:nth-child(3) div {
    margin-left: 0;
  }
}
footer span:nth-child(4) div {
  margin-left: 44px;
}
@media (max-width: 768px) {
  footer span:nth-child(4) div {
    margin-left: 0;
  }
}
footer img.social {
  width: 22px;
}
footer:after {
  content: "";
  height: 1px;
  width: 80%;
  background-color: #757384;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
footer h2 {
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer h2 {
    margin-top: 2rem;
  }
}
footer a {
  color: var(--gray);
}
footer .menu {
  -moz-columns: 2;
       columns: 2;
  padding-left: 0;
  margin-left: 0;
}
@media (max-width: 768px) {
  footer .menu {
    -moz-columns: 1;
         columns: 1;
  }
}
footer .menu li {
  list-style: none;
}
footer .menu li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
footer .menu li a:hover {
  color: var(--d-blue);
  font-weight: 600;
}

.slick-prev:before, .slick-next:before {
  display: none;
}

#hero .hero__slider {
  height: 310px;
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: end;
  color: white;
  font-size: 32px;
  padding-bottom: 3rem;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #hero .hero__slider {
    height: 410px;
  }
}
#hero .hero__slider h2,
#hero .hero__slider p {
  text-shadow: 3px 4px 3px rgba(0, 0, 0, 0.2);
}
#hero .hero__slider h2 {
  font-size: 40px;
  font-weight: 900;
  color: white;
}
#hero .slick-prev, #hero .slick-next {
  width: 27px;
  height: 27px;
  z-index: 2;
}
#hero .slick-prev {
  background: url(../imgs/prev.svg) no-repeat;
  left: 3%;
}
#hero .slick-next {
  background: url(../imgs/next.svg) no-repeat;
  right: 3%;
}
#hero .hero__slider_link img {
  aspect-ratio: 1920/600;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 980px) {
  #hero .hero__slider_link img {
    aspect-ratio: 700/500;
  }
}

.banner_interno {
  height: 310px;
  display: flex;
  align-items: end;
  color: white;
  font-size: 24px;
  font-weight: 300;
  padding-bottom: 1rem;
  background-size: cover !important;
}
@media (max-width: 768px) {
  .banner_interno {
    font-size: 20px;
    height: 400px;
  }
}
.banner_interno h2 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .banner_interno h2 {
    font-size: 32px;
  }
}
.banner_interno p {
  margin-bottom: 26px;
}
.banner_interno a {
  width: 260px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  transition: all 500ms ease;
}
.banner_interno a:hover {
  background: var(--l-blue);
}
.banner_interno a.ab {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: inherit;
  height: inherit;
}
.banner_interno a.ab:hover {
  background: transparent;
}
.banner_interno video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner_interno img.play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

#about {
  background: url(../imgs/linha.png) top left no-repeat;
  color: var(--l-gray);
  padding-top: 2rem;
}
@media (max-width: 768px) {
  #about {
    background-size: contain;
  }
}
#about h2,
#about h3 {
  text-align: center;
}
#about h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}
@media (max-width: 768px) {
  #about h2 {
    font-size: 28px;
  }
}
#about h3 {
  color: var(--l-gray);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #about h3 {
    font-size: 18px;
  }
}
#about h3 strong {
  font-weight: 700;
}

#who {
  padding-top: 3rem;
  background: url(../imgs/line3.png) left top no-repeat;
  color: var(--gray);
}
@media (max-width: 768px) {
  #who {
    background: url(../imgs/linha2_mob.png) left top no-repeat;
    background-size: 30%;
  }
}
#who.invert {
  background: url(../imgs/invert_line.png) right top no-repeat;
}
@media (min-width: 1000px) and (max-width: 1300px) {
  #who.invert {
    background: url(../imgs/invert_line.png) 112% top no-repeat;
  }
}
@media (max-width: 992px) {
  #who.invert {
    background: transparent;
  }
}
#who.j a {
  border-radius: 20px;
}
#who.politica {
  background: transparent;
}
#who.politica:after {
  content: "";
  background: url(../imgs/invert_line.png) left top no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 371px;
  height: 372px;
}
@media (max-width: 768px) {
  #who.politica:after {
    display: none;
  }
}
#who a {
  border-radius: 0 0 20px 20px;
  box-shadow: -4px 10px 13px -7px rgba(0, 0, 0, 0.4);
  width: 294px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-weight: 300;
}
#who a:hover {
  background-color: var(--l-blue);
}
#who a.gov {
  background: var(--d-blue);
  color: white;
  width: 190px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
}
#who h2 {
  color: var(--d-blue);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #who h2 {
    font-size: 32px;
  }
}

#purpose {
  margin-top: 4rem;
}
#purpose h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
}
#purpose h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#purpose .slick-slide {
  margin: 0 18px;
}
@media (max-width: 500px) {
  #purpose .slick-slide {
    width: 38px;
  }
}
#purpose .slick-list {
  margin: 0 -18px;
}
#purpose .card {
  border-radius: 20px;
  border-color: #02447D;
  box-shadow: -4px 10px 13px -7px rgba(0, 0, 0, 0.2);
  min-height: 328px;
  height: auto;
}
@media (max-width: 576px) {
  #purpose .card {
    min-height: 390px;
  }
}
#purpose .card-body {
  font-size: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 405px;
}
@media (max-width: 500px) {
  #purpose .card-body {
    padding: 2rem 1rem;
  }
}
#purpose .card-body h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  #purpose .card-body h3 {
    font-size: 26px;
  }
}

#history {
  margin-top: 4rem;
  padding: 4rem 0;
  background-color: var(--l-white);
}
#history h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
  margin-bottom: 2rem;
}
#history h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}

#videos {
  background: var(--d-blue) url(../imgs/line_video.png) right top;
  padding: 2rem 0;
  height: 336px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#videos .videosBox .slick-slide {
  margin: 0 18px;
}
#videos .videosBox .slick-list {
  margin: 0 -18px;
}
#videos .video_content {
  transition: all 500ms ease;
}
#videos .video_content a {
  position: relative;
  display: block;
}
#videos .video_content a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 300ms ease;
}
#videos .video_content a::after {
  content: "";
  background: rgb(88, 88, 90);
  background: linear-gradient(180deg, rgba(88, 88, 90, 0) 0%, rgb(66, 199, 239) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms ease;
}
#videos .video_content a:hover svg {
  opacity: 0;
}
#videos .video_content a:hover::after {
  opacity: 1;
}
#videos .video_content:hover {
  transform: scale(1.01);
}
#videos span {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
  color: white;
}

#team {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: url(../imgs/line4.png) left top no-repeat;
  color: var(--l-gray);
}
@media (max-width: 768px) {
  #team {
    background: transparent;
  }
}
#team h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
  margin-bottom: 2rem;
}
#team h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#team img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  #team img {
    width: 100%;
  }
}

#process {
  background-color: var(--l-white);
  padding: 5rem 0;
}
#process h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 400;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
  margin-bottom: 2rem;
}
#process h2 strong {
  font-size: 400;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#process .tab-nav {
  display: flex;
}
#process .tab-nav a {
  background-color: var(--l-gray-2);
  display: inline-block;
  color: var(--gray);
  font-weight: 300;
  width: 50%;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  box-shadow: 10px 0px 5px 0px rgba(0, 0, 0, 0.06);
  transition: background-color 500ms ease;
}
#process .tab-nav a.active {
  color: var(--d-blue);
  font-weight: 700;
  font-size: 18px;
  background-color: white;
  border-radius: 20px 20px 0 0;
}
#process .tab-item {
  display: none;
}
#process .tab-item.active {
  display: block;
}
#process .tab-content {
  background-color: white;
  box-shadow: 10px 0px 5px 0px rgba(0, 0, 0, 0.06);
  border-radius: 0 0 20px 20px;
  padding: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  #process .tab-content img {
    width: 100%;
  }
}

#units {
  margin-top: 4rem;
}
#units h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
  margin-bottom: 2rem;
}
#units h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#units .box {
  background-color: var(--d-blue);
  color: white;
  font-size: 12px;
  border-radius: 20px;
  padding: 2rem;
}
#units .box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
#units .box p {
  margin-bottom: 0.45rem;
  line-height: 20px;
}
#units .box strong {
  font-weight: 700;
}

#for {
  margin-top: 4rem;
}
#for h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
}
#for h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#for .content {
  background-color: hsla(225, 2%, 51%, 0.05);
  padding-block-start: 3rem;
}
#for .tab-nav {
  display: flex;
}
@media (max-width: 768px) {
  #for .tab-nav {
    gap: 6px;
  }
}
#for .tab-nav a {
  display: inline-block;
  color: var(--gray);
  font-weight: 300;
  width: 50%;
  padding: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  #for .tab-nav a {
    padding: 0;
    font-size: 14px;
  }
}
#for .tab-nav a.active {
  color: var(--d-blue);
  font-weight: 700;
  font-size: 18px;
  position: relative;
}
@media (max-width: 768px) {
  #for .tab-nav a.active {
    font-size: 14px;
    font-weight: 300;
  }
}
#for .tab-nav a.active::after {
  width: 51%;
}
@media (max-width: 768px) {
  #for .tab-nav a.active::after {
    width: 80%;
    bottom: -5px;
  }
}
#for .tab-item {
  display: none;
}
#for .tab-item.active {
  display: block;
}
#for .tab-content {
  padding: 0 0 2rem;
  text-align: center;
  /* the parent */
}
#for .tab-content .slick-prev {
  left: 0;
  z-index: 999;
  background: url(../imgs/prev_mob.png);
  width: 20px;
  height: 20px;
  background-size: contain;
}
#for .tab-content .slick-next {
  right: 0;
  z-index: 999;
  background: url(../imgs/next_mob.png);
  width: 20px;
  height: 20px;
  background-size: contain;
}
#for .tab-content a img {
  filter: grayscale(100%);
}
#for .tab-content a:hover img {
  filter: grayscale(0%);
}
#for .tab-content .slick-slide {
  margin: 0 27px;
}
@media (max-width: 768px) {
  #for .tab-content .slick-slide {
    margin: 0 0;
  }
}
#for .tab-content .slick-slide img {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  #for .tab-content .slick-slide img {
    width: 80%;
  }
}
#for .tab-content .slick-list {
  margin: 0 -27px;
}
@media (max-width: 768px) {
  #for .tab-content .slick-list {
    margin: 0 0;
  }
}

#certifications {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  #certifications {
    margin-bottom: 2rem;
  }
}
#certifications h2 {
  color: var(--d-blue);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto;
  width: 100% !important;
  font-style: normal;
}
#certifications h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
#certifications .slick-slide {
  margin: 0 18px;
}
#certifications .slick-list {
  margin: 0 -18px;
}
#certifications .img {
  border-radius: 10px;
}
#certifications .img img {
  width: 88%;
  margin: 0 auto;
}
#certifications .capt {
  font-weight: 500;
  text-align: center;
  font-size: 13px;
}
#certifications .capt a {
  color: var(--d-blue);
}

#products {
  margin-top: 4rem;
}
#products h2 {
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  margin: 0 auto;
  width: 300px !important;
  width: 100% !important;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
}
#products h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  #products h2 {
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    margin: 0 auto;
    width: 100% !important;
  }
  #products h2 strong {
    font-size: 28px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 4px;
  }
}
#products .products__box {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  #products .products__box {
    grid-template-columns: 100%;
  }
}
@media (max-width: 768px) {
  #products .products__box .box {
    margin-bottom: 2rem;
  }
}
#products .products__box .box a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
#products .products__box .box:hover img {
  filter: grayscale(0%);
}
#products .products__box .box img {
  border-radius: 20px;
  filter: grayscale(100%);
  transition: filter 500ms ease-in-out;
  width: 100%;
}
#products .products__box .bar {
  background-color: var(--d-blue);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 105px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#products .products__box .bar img {
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
}

#eco {
  margin-top: 4rem;
  z-index: 1;
}
#eco .eco__box {
  color: var(--d-blue);
  background-color: var(--l-gray-2);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  margin-top: 3rem;
}
#eco .eco__box h2 {
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #eco .eco__box h2 {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  #eco .eco__box {
    display: block;
    border-radius: 0 100px 0 0;
  }
  #eco .eco__box .img {
    height: 300px;
    overflow: hidden;
  }
  #eco .eco__box img {
    border-radius: 0 100px 0 0;
  }
}
#eco .eco__box .text {
  padding: 2rem 4rem;
}
@media (max-width: 768px) {
  #eco .eco__box .text {
    padding: 2rem 1rem;
  }
}
#eco .eco__box .text h3 {
  color: var(--d-blue);
  font-size: 40px;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  #eco .eco__box .text h3 {
    font-size: 28px;
  }
}
#eco .eco__box .text a {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  box-shadow: -4px 10px 13px -7px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1200px) {
  #eco .eco__box .text a {
    width: 100%;
    margin: 1.75rem auto 0;
  }
}

#relations {
  margin-top: 4rem;
}
#relations h2 {
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  margin: 0 auto;
  width: 617px !important;
  width: 100% !important;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
}
#relations h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  #relations h2 {
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    margin: 0 auto;
    width: 100% !important;
  }
  #relations h2 strong {
    font-size: 28px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 4px;
  }
}
#relations .relations__box {
  background: url(../imgs/bg_rel.png) no-repeat;
  background-size: cover;
  color: white;
  padding: 1.225rem;
  border-radius: 20px;
  margin-top: 3rem;
}
#relations .relations__box .box {
  color: white;
  background-color: hsla(0, 0%, 100%, 0.073);
  width: 587px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 0 50px 0 0;
}
@media (max-width: 768px) {
  #relations .relations__box .box {
    width: 100%;
    margin: 0rem;
    padding: 1rem;
  }
}
#relations .relations__box .box a {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  color: white;
  font-weight: 700;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 10px 13px -7px rgba(0, 0, 0, 0.4);
}

#blog {
  margin-top: 4rem;
  background: url(../imgs/line2.png) left top no-repeat;
}
#blog h2 {
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  margin: 0 auto;
  width: 300px !important;
  font-style: italic;
  letter-spacing: 4px;
  text-align: center;
  width: 100% !important;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
}
#blog h2 strong {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  #blog h2 {
    font-style: italic;
    font-weight: 900;
    font-size: 28px;
    margin: 0 auto;
    width: 100% !important;
    font-style: normal;
    letter-spacing: 4px;
    text-align: center;
  }
  #blog h2 strong {
    font-size: 28px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 4px;
  }
}
#blog .blog__container {
  background-color: var(--l-gray-2);
  border-radius: 50px 0 0 0;
  padding: 2rem 0;
  margin-top: 3rem;
}
#blog .blog__container a.btn_blue {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: -4px 10px 13px -7px rgba(0, 0, 0, 0.4);
  width: 274px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  font-weight: 300;
}
#blog .blog__box {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #blog .blog__box {
    grid-template-columns: 100%;
  }
}
#blog .blog__box .post-item {
  display: grid;
  grid-template-columns: 49% 49%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #blog .blog__box .post-item {
    grid-template-columns: 100%;
    margin-bottom: 2rem;
  }
}
#blog .blog__box .post-thumbnail {
  width: 260px;
  height: 260px;
  background-size: cover;
  background-position: center top;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  #blog .blog__box .post-thumbnail {
    width: 100%;
  }
}
#blog .blog__box .post-content {
  width: 260px;
  color: var(--d-blue);
  font-size: 16px;
}
@media (max-width: 768px) {
  #blog .blog__box .post-content {
    width: 100%;
    margin-top: 1rem;
  }
}
#blog .blog__box .post-content h3 {
  font-size: 22px;
  font-weight: 700;
}
#blog .blog__box .post-content a {
  color: var(--d-blue);
  font-weight: 700;
}
#blog.interna {
  background: url(../imgs/line_big.png) left no-repeat;
}
@media (max-width: 992px) {
  #blog.interna {
    background: transparent;
  }
}
#blog.interna h2 {
  font-size: 40px;
  font-weight: 900;
  text-transform: none;
  text-align: center;
  letter-spacing: normal;
  font-style: normal;
}
#blog.interna .blog__container {
  background-color: transparent;
}
@media (max-width: 992px) {
  #blog.interna .blog__box {
    grid-template-columns: 100%;
  }
}
#blog.interna .blog__box .post-item {
  display: block;
  padding: 2rem 2rem 6rem;
  background: #F5F5F5;
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
}
#blog.interna .blog__box .post-thumbnail {
  width: 100%;
  height: 289px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
#blog.interna .blog__box .post-content {
  width: 100%;
}
#blog.interna .blog__box .post-content a {
  background: var(--d-blue);
  width: 260px;
  height: 60px;
  position: absolute;
  left: 50%;
  font-weight: 400;
  margin: 0 auto;
  color: white;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 500ms ease;
  transform: translate(-50%);
  bottom: 28px;
}
#blog.interna .blog__box .post-content a:hover {
  background-color: var(--l-blue);
  font-weight: 700;
}

#boxes {
  margin-top: 4rem;
}
#boxes a.ab {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
#boxes .content {
  position: relative;
}
#boxes .content .img {
  position: relative;
}
#boxes .content .img::after {
  content: "";
  background: rgb(88, 88, 90);
  background: linear-gradient(180deg, rgba(88, 88, 90, 0) 0%, rgb(66, 199, 239) 100%);
  position: absolute;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms ease;
}
#boxes .content .img:hover::after {
  opacity: 1;
}
#boxes .content img {
  transition: all 300ms ease;
  border-radius: 20px;
}
#boxes .text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-block-start: 1rem;
  margin-block-end: 1.75rem;
}
#boxes .big_box {
  margin-top: 4rem;
  min-height: 420px;
  height: auto;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  color: white;
  padding: 0 0 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
#boxes .big_box::after {
  content: "";
  background: rgb(88, 88, 90);
  background: linear-gradient(90deg, rgba(88, 88, 90, 0) 0%, rgb(8, 69, 123) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  pointer-events: none;
}
#boxes .big_box .text {
  z-index: 2;
}
#boxes .big_box .text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
#boxes .big_box .text p {
  width: 400px;
}
#boxes .big_box .text a {
  min-width: 260px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 300;
  margin-block-start: 0;
  color: white;
  justify-content: center;
  transition: background-color 500ms ease;
}
#boxes .big_box .text a:hover {
  background: white;
  color: var(--d-blue);
  font-weight: 700;
}

#banner_product {
  margin-top: 4rem;
  background: url(../imgs/bg_fin.jpg) no-repeat;
  background-size: cover;
  min-height: 426px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
#banner_product h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
#banner_product a {
  min-width: 260px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 300;
  margin-block-start: 0;
  color: white;
  justify-content: center;
  transition: background-color 500ms ease;
  margin-block-start: 1.7rem;
}
#banner_product a:hover {
  background: white;
  color: var(--d-blue);
  font-weight: 700;
}

#destaque_eco {
  background: url(../imgs/bg_detaque.jpg) left;
  background-size: cover;
  color: white;
  padding: 3rem 0;
}
#destaque_eco h2 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
#destaque_eco .slick-slide {
  margin: 0 17px;
}
@media (max-width: 768px) {
  #destaque_eco .slick-slide {
    margin: 0 8px;
  }
}
#destaque_eco .slick-list {
  margin: 0 -17px;
}
@media (max-width: 768px) {
  #destaque_eco .slick-list {
    margin: 0 -8px;
  }
}
#destaque_eco .slick-dots li button:before {
  color: white;
  font-size: 12px;
}
#destaque_eco .box .img {
  background-size: cover;
  height: 236px;
  border-radius: 20px 20px 0 0;
}
#destaque_eco .box .text {
  background-color: white;
  color: var(--d-blue);
  padding: 1rem 2rem;
  border-radius: 0 0 20px 20px;
  text-align: center;
  font-size: 16px;
}
#destaque_eco .box .text p {
  line-height: 24px;
}
#destaque_eco .box .text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

#accordion {
  padding-top: 4rem;
}
#accordion h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}

.accordion {
  width: 100%;
  margin: 0 auto;
  --bs-accordion-border-color: transparent;
}
.accordion-body {
  padding: 10px;
  display: none;
  background-color: var(--d-blue);
  color: white;
}
.accordion-item {
  margin-bottom: 1rem;
}
.accordion-header {
  padding: 14px;
  border: 1px solid var(--d-blue);
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}
.accordion-header img {
  position: absolute;
  left: 20px;
}
.accordion-header svg {
  position: absolute;
  right: 20px;
  top: 16px;
}
.accordion-header h3 {
  color: var(--d-blue);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .accordion-header h3 {
    padding: 0 2rem;
    font-size: 16px;
  }
}
.accordion-header.active, .accordion-header:hover {
  background-color: var(--d-blue);
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid white;
  transition: all 500ms ease;
}
.accordion-header.active h3, .accordion-header:hover h3 {
  color: white;
}
.accordion-header.active img,
.accordion-header.active svg path, .accordion-header:hover img,
.accordion-header:hover svg path {
  filter: brightness(0) invert(1);
}
.accordion-header.active svg {
  transform: rotate(180deg);
}

#indicators {
  margin-top: 4rem;
  padding: 4rem 0;
  background: #F5F5F5;
}
#indicators h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}
#indicators .box {
  background: white;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
}
#indicators .box .tit {
  font-weight: 700;
}
#indicators .box .link {
  width: 190px;
  margin: 1rem auto 0;
}
#indicators .box .link a {
  background: var(--d-blue);
  color: white;
  font-weight: 700;
  border-radius: 5px;
  display: block;
  padding: 10px 20px;
  text-align: center;
  transition: all 500ms ease;
}
#indicators .box .link a:hover {
  background-color: var(--l-blue);
}

#contato {
  background: url(../imgs/small_line.png) left top no-repeat;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  #contato.trabalhe {
    background: transparent;
  }
}
#contato.trabalhe h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}
#contato.trabalhe p {
  color: var(--l-gray);
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #contato.trabalhe p {
    width: 100%;
  }
}
#contato.trabalhe .forms {
  background: var(--d-blue) url(../imgs/bg_trabalhe.png) top no-repeat;
  min-height: 843px;
  background-size: cover;
}
#contato.trabalhe textarea {
  width: 100%;
}
#contato .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
#contato .buttons button {
  border: 0;
  background-color: var(--d-blue);
  color: white;
  font-weight: 700;
  border-radius: 10px;
  width: 260px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 500ms ease;
}
@media (max-width: 768px) {
  #contato .buttons button {
    width: 46%;
  }
}
#contato .buttons button:hover, #contato .buttons button.active {
  background-color: var(--l-blue);
}
#contato a.gov {
  background: var(--d-blue);
  color: white;
  width: 190px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
}
#contato .forms {
  background: url(../imgs/linha_contato.png) center no-repeat;
  background-size: cover;
  border-radius: 50px 50px 0 0;
  padding: 3rem 0;
  margin-top: 3rem;
  min-height: 648px;
}
#contato .forms h3 {
  color: white;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}
#contato form {
  margin-top: 3rem;
}
#contato form .campos input[type=text]:focus, #contato form .campos input[type=email]:focus, #contato form .campos input[type=tel]:focus {
  outline: none;
  border: 1px solid var(--l-blue);
}
#contato form .campos textarea {
  transition: all 500ms ease;
}
#contato form .campos textarea:focus {
  outline: none;
  border: 1px solid var(--l-blue);
}
#contato form label {
  position: absolute;
  transform: translate(22px, 14px);
  transition: all 0.2s;
  transition: all 500ms ease;
  color: white;
}
#contato form input[type=text], #contato form input[type=email], #contato form input[type=tel] {
  background: transparent;
  width: 100%;
  border: 1px solid white;
  margin-bottom: 1rem;
  border-radius: 4px;
  height: 56px;
  color: white;
  padding-left: 1rem;
}
#contato form input[type=submit] {
  background-color: var(--l-blue);
  color: white;
  width: 214px;
  height: 55px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  border: 0;
  margin: 2rem auto 0;
}
#contato form .wpcf7-acceptance label {
  position: initial;
  transform: none;
}
#contato form textarea {
  background: transparent;
  border: 1px solid white;
  margin-bottom: 0;
  border-radius: 4px;
  height: 271px;
  color: white;
  width: 100%;
  padding-left: 1rem;
}
#contato form .wpcf7-list-item {
  margin-left: 0;
}

#documents {
  margin-top: 4rem;
}
#documents h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}
#documents .documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 768px) {
  #documents .documents {
    grid-template-columns: repeat(1, 1fr);
  }
}
#documents .documentsBox {
  background: #F5FCFF;
  border-radius: 10px;
  padding: 1.7rem 2rem;
  text-align: center;
}
#documents .documentsBox h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 24px;
}
#documents .documentsBox a {
  border-radius: 5px;
  display: block;
  background: var(--d-blue);
  color: white;
  width: 198px;
  height: 44px;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: background 500ms ease;
  margin: 0 auto;
}
#documents .documentsBox a:hover {
  background: var(--l-blue);
}

#comuni {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
#comuni h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--d-blue);
}
#comuni .comuni {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media (max-width: 768px) {
  #comuni .comuni {
    grid-template-columns: repeat(1, 1fr);
  }
}
#comuni .comuniBox {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 1.7rem 2rem;
}
#comuni .comuniBox h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 32px;
}
#comuni .comuniBox p {
  line-height: 22px;
}
#comuni .comuniBox a {
  border-radius: 0 0 20px 20px;
  display: block;
  background: var(--d-blue);
  color: white;
  width: 198px;
  height: 60px;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: background 500ms ease;
  margin: 1rem auto 0;
}
#comuni .comuniBox a:hover {
  background: var(--l-blue);
}

#politica {
  margin-top: 4rem;
  color: var(--gray);
}
#politica strong {
  font-weight: 700;
}
#politica h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
}

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

.content_post .content h2 {
  color: var(--d-blue);
  font-size: 30px;
  font-weight: 900;
  margin-block: 0.7rem;
}

#blog.blog_lista {
  background: var(--d-blue);
  color: white;
}
#blog.blog_lista h2 {
  color: white;
  font-size: 30px;
  margin-block: 3rem;
  font-weight: 900;
}
#blog.blog_lista .box_blog {
  gap: 20px;
}
#blog.blog_lista .box_blog .img {
  height: 300px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
#blog.blog_lista .box_blog .text {
  padding: 2rem;
  color: var(--gray);
}
#blog.blog_lista .box_blog .text span.data {
  color: var(--cinza);
  font-size: 16px;
  font-weight: 600;
}
#blog.blog_lista .box_blog .text h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--d-blue);
  margin-block: 0.75rem;
}
#blog.blog_lista .box_blog .text .leia {
  color: var(--d-blue);
  font-weight: 700;
  transition: color 0.4s ease;
  display: block;
  margin-top: 1rem;
}
#blog.blog_lista .box {
  width: 33%;
  border-radius: 20px;
  background-color: white;
  transition: all 0.4s ease-in;
}
@media (max-width: 768px) {
  #blog.blog_lista .box {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#blog.blog_lista .box:hover {
  transform: scale(1.06);
  transition: all 0.4s ease-in;
}

#tabela_inv {
  margin-bottom: 3rem;
}
@media (max-width: 460px) {
  #tabela_inv thead {
    display: none;
  }
}
#tabela_inv select {
  background-color: #F5F5F5;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px;
  -webkit-appearance: none;
}
#tabela_inv select#categoria_santo {
  width: 321px;
}
@media (max-width: 768px) {
  #tabela_inv select {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  #tabela_inv table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
  }
}
#tabela_inv button#enviar, #tabela_inv button#enviar_santo {
  background: var(--d-blue);
  color: white;
  width: 190px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  #tabela_inv button#enviar, #tabela_inv button#enviar_santo {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  #tabela_inv tbody td.mob {
    display: none;
  }
}
#tabela_inv tbody tr {
  border-bottom: 1px solid #BABABA;
}
#tabela_inv tbody tr:nth-child(even) {
  background-color: #F5FCFF;
}
#tabela_inv tbody tr a {
  color: var(--d-blue);
}
#tabela_inv tbody tr:nth-child(odd) {
  background-color: #F5F5F5;
}

.page-jeanswear .banner_interno h2, .page-workwear .banner_interno h2 {
  font-size: 30px;
  text-shadow: 3px 4px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .page-jeanswear .banner_interno h2, .page-workwear .banner_interno h2 {
    font-size: 30px;
  }
}
.page-jeanswear .banner_interno a, .page-workwear .banner_interno a {
  width: 229px;
  height: 46px;
  font-size: 16px;
}

.page-contato .banner_interno h2 {
  font-size: 34px;
}

.slide_equipe .slick-prev {
  left: -25px;
  z-index: 999;
  background: url(../imgs/prev_mob.png);
  width: 20px;
  height: 20px;
  background-size: contain !important;
}
.slide_equipe .slick-next {
  right: -25px;
  z-index: 999;
  background: url(../imgs/next_mob.png);
  width: 20px;
  height: 20px;
  background-size: contain !important;
}
.slide_equipe .slick-next:focus, .slide_equipe .slick-next:hover {
  background: url(../imgs/next_mob.png);
}
.slide_equipe .slick-prev:focus, .slide_equipe .slick-prev:hover {
  background: url(../imgs/prev_mob.png);
}

.lista_idiomas {
  width: -moz-fit-content;
  width: fit-content;
}
.lista_idiomas select {
  border: none;
  background: none;
  font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 6px !important;
  border: 0 !important;
  text-align: center !important;
  color: white !important;
}

#sustentometro {
  background-size: cover !important;
  background-position: center !important;
  padding-top: 210px;
  margin-top: -150px;
}
#sustentometro .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sustentometro .imagem {
  width: 47%;
}
#sustentometro .imagem img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1200px) {
  #sustentometro .imagem {
    width: 100%;
    max-width: 615px;
    order: 1;
    margin: 30px auto 0;
  }
}
#sustentometro .conteudo {
  color: #fff;
  width: 53%;
}
#sustentometro .conteudo p {
  font-size: 20px;
  line-height: 30px;
}
#sustentometro .conteudo p strong {
  font-weight: 700;
}
#sustentometro .conteudo h2 {
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
@media screen and (max-width: 1200px) {
  #sustentometro .conteudo {
    width: 100%;
  }
}
#sustentometro #garrafas {
  margin: 30px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
#sustentometro #garrafas span {
  background: url(../imgs/garrafa.png);
  background-size: cover;
  width: 52px;
  height: 150px;
  color: #325C40;
  font-size: 48px;
  line-height: 40px;
  font-weight: 900;
  display: inline-block;
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #sustentometro #garrafas span {
    width: auto;
    height: 92px;
    aspect-ratio: 26/75;
    padding-top: 35px;
    margin-right: 5px;
  }
}
#sustentometro #garrafas .espaco {
  opacity: 0;
  width: 30px;
}
@media screen and (max-width: 768px) {
  #sustentometro #garrafas .espaco {
    width: 20px;
  }
}
@media screen and (max-width: 410px) {
  #sustentometro #garrafas .espaco {
    width: 10px;
  }
}
#sustentometro .unidades {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 528px;
  margin: 10px auto 0;
}
#sustentometro .unidades span {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
#sustentometro .atualizacao {
  margin-top: 50px;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  #sustentometro .atualizacao {
    text-align: center;
  }
}
#sustentometro .atualizacao p {
  font-size: 16px;
}/*# sourceMappingURL=main.css.map */