@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap");
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  color: hsl(0, 0%, 55%);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container {
    max-width: 1050px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}
.container__min {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container__min {
    max-width: 900px;
  }
}
.container__3products {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container__3products {
    max-width: 750px;
  }
}
.container__2products {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container__2products {
    max-width: 520px;
  }
}

.section {
  padding: 7rem 0 7rem;
  text-align: center;
}
.section__title {
  font-size: 2.8rem;
  color: hsl(205, 100%, 35%);
  font-weight: 700;
  margin-bottom: 3rem;
}
.section__title.bottom {
  margin-bottom: 6rem;
}
.section__subtitle {
  font-size: 1.8rem;
  color: hsl(205, 100%, 35%);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4rem;
}
.section__description {
  font-size: 1.5rem;
  max-width: 80%;
  margin: auto;
  margin-bottom: 8rem;
}
@media (min-width: 768px) {
  .section__description {
    max-width: 75%;
  }
}

.m-botton {
  margin-bottom: 0;
}

.check {
  color: hsl(110, 96%, 32%);
  font-weight: 700;
  text-transform: uppercase;
}

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

.grid {
  display: grid;
  justify-content: center;
}

.icon__content {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .icon__content {
    padding: 70px 10px;
  }
}
.icon__content:hover {
  background: #35629E;
}
.icon__img {
  width: 80px;
  height: 80px;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: none;
     object-position: none;
  margin: auto;
  margin-bottom: 2rem;
}
.icon__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 100%);
}
.icon__description {
  max-width: 200px;
  font-size: 1.3rem;
  margin: auto;
  margin-bottom: 2rem;
}

.products__grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: center;
  row-gap: 10px;
  gap: 8px;
}
@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    justify-items: start;
  }
}
.products__content {
  padding: 15px 30px;
}
.products__content a {
  color: hsl(0, 0%, 55%);
}
.products__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
  color: hsl(205, 100%, 35%);
  max-width: 290px;
  margin: 2rem auto 1rem;
}
.products__title:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .products__title {
    text-align: left;
    margin: 2rem 0 1rem;
  }
}
.products__description {
  margin: auto;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 300px;
}
@media (min-width: 768px) {
  .products__description {
    margin: 0;
    text-align: left;
  }
}
.products__menu {
  background: hsl(203, 53%, 93%);
  margin-top: 9.5rem;
}
.products__menu .container {
  max-width: 800px;
  padding: 4.5rem 0;
}
.products__menu .menu__title {
  color: hsl(205, 100%, 35%);
  margin-bottom: 3rem;
  margin-top: 0;
  font-weight: 600;
  font-size: 1.4rem;
}
.products__menu li {
  position: relative;
}
.products__menu a {
  color: hsl(0, 0%, 100%);
}
.products__menu ul {
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0;
  background: hsl(205, 100%, 35%);
  text-align: left;
}
.products__menu .submenu {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  display: none;
  padding: 15px;
}
.products__dropdown {
  border-radius: 10px;
  color: hsl(0, 0%, 100%);
  background: hsl(205, 100%, 35%);
  font-weight: 500;
  padding: 12px 15px;
  font-size: 1.2rem;
  line-height: 1.6rem;
  display: flex;
  align-items: center;
}
.products__dropdown:hover .submenu {
  display: block;
}
.products__button {
  border-radius: 10px;
  color: hsl(0, 0%, 100%);
  background: hsl(205, 100%, 35%);
  font-weight: 500;
  padding: 12px 15px;
  font-size: 1.2rem;
  line-height: 1.6rem;
  display: flex;
  align-items: center;
}
.products__button:hover {
  color: hsl(0, 0%, 100%);
  background: hsl(0, 0%, 55%);
}

.all-buttons.flex {
  flex-wrap: wrap;
  align-items: initial;
  justify-content: center;
  gap: 7px;
}

.center {
  text-align: center;
}

.products__img {
  height: 120px;
  -o-object-position: center;
     object-position: center;
  margin: auto;
}
@media (min-width: 768px) {
  .products__img {
    margin: 0;
    height: 150px;
  }
}
.products__img.minimum {
  height: 220px;
}
.products__img.medium {
  height: 280px;
}
.products__img.max {
  height: 350px;
}

.table {
  width: 350px;
  height: auto;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .table {
    width: 400px;
  }
}
.table__min {
  width: 300px;
  height: auto;
  margin-bottom: 4rem;
}
.table__min__2 {
  width: 180px;
  height: auto;
  margin-bottom: 4rem;
}

.desenho__tecnico {
  width: 350px;
  height: auto;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .desenho__tecnico {
    width: 350px;
  }
}
.desenho__tecnico__min {
  width: 300px;
  height: auto;
  margin-bottom: 4rem;
}
.desenho__tecnico__min__2 {
  width: 200px;
  height: auto;
  margin-bottom: 4rem;
}

.exibition.section {
  padding: 2rem 0 7.5rem;
}
@media (min-width: 768px) {
  .exibition.section {
    padding: 7rem 0 7.5rem;
    text-align: left;
  }
}
.exibition__data {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
.exibition__content {
  align-items: flex-start;
  row-gap: 35px;
}
@media (min-width: 768px) {
  .exibition__content {
    gap: 70px;
  }
}
.exibition__content.container {
  max-width: 800px;
}
.exibition__content.flex {
  flex-direction: column;
}
@media (min-width: 768px) {
  .exibition__content.flex {
    flex-direction: row;
  }
}
.exibition .section__title {
  text-align: center;
  margin-bottom: 3rem;
  line-height: 4rem;
}
@media (min-width: 768px) {
  .exibition .section__title {
    text-align: left;
  }
}
.exibition .section__description {
  margin: auto;
  text-align: center;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .exibition .section__description {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
  }
}

.order {
  order: 1;
}

.special {
  max-width: 900px;
}

.twoo-columns {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .twoo-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.weight {
  margin: auto;
  width: 150px;
  gap: 10px;
}
.weight.flex {
  justify-content: center;
}
.weight__button {
  border: 1px solid hsl(0, 0%, 55%);
  color: hsl(0, 0%, 55%);
  font-weight: 600;
  padding: 3px 10px;
  font-size: 1.1rem;
}
.weight__button:hover {
  color: hsl(0, 0%, 100%);
  background: hsl(0, 0%, 55%);
}

.social-media {
  display: none;
}
.social-media img {
  width: 18px;
}
@media (min-width: 768px) {
  .social-media {
    display: flex;
    gap: 12px;
  }
}

.mb-bottom {
  margin-bottom: 8rem;
}

.mb-bottom-min {
  margin-bottom: 5rem;
}

.mb-top {
  margin-top: 4rem;
}

.home {
  position: relative;
  width: 100%;
  height: 150px;
  margin-top: 9.5rem;
}
@media (min-width: 1024px) {
  .home {
    height: 420px;
  }
}
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.home__img:first-child {
  opacity: 1;
}
@media (min-width: 1024px) {
  .home__img {
    -o-object-position: initial;
       object-position: initial;
  }
}
.home__content {
  align-content: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  z-index: 10;
  display: grid;
}
@media (min-width: 1024px) {
  .home__content {
    display: grid;
  }
}
.home__title, .home__description {
  color: hsl(0, 0%, 100%);
}
.home__title {
  max-width: 290px;
  font-size: 2.2rem;
  line-height: 2.7rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .home__title {
    max-width: 330px;
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.home__title span {
  font-weight: 700;
}
.home__description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.home__button {
  margin: auto;
  padding: 10px 15px;
  text-align: center;
  background: hsl(0, 0%, 100%);
  color: hsl(205, 100%, 35%);
  font-size: 1.4rem;
  font-weight: 600;
}

.slideshow {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.button {
  background: hsl(205, 100%, 35%);
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  padding: 15px 20px;
}
.button__flex {
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  gap: 12px;
}
@media (min-width: 768px) {
  .button__flex {
    justify-content: start;
    align-items: flex-start;
  }
}
.button:hover {
  background: hsl(205, 100%, 35%);
  color: #fff;
}
.button__news {
  margin: 0 auto;
  background: hsl(205, 100%, 35%);
  color: hsl(0, 0%, 100%);
  width: 7rem;
  padding: 5px;
}
@media (min-width: 768px) {
  .button__news {
    margin: 2rem 0;
  }
}
.button__download {
  text-align: center;
  background: hsl(338, 100%, 35%);
  color: hsl(0, 0%, 100%);
  padding: 15px 15px;
}
@media (min-width: 768px) {
  .button__download {
    margin: 0;
  }
}
.button__download:hover {
  background: hsl(338, 100%, 25%);
}

.m-full {
  margin-bottom: 7rem;
}

.b-blue {
  background: hsl(205, 100%, 35%);
}

.whatsapp img {
  display: none;
}
@media (min-width: 768px) {
  .whatsapp img {
    display: block;
    width: 50px;
    position: fixed;
    bottom: 15%;
    left: 5%;
  }
  .whatsapp img:hover {
    padding: 3px;
  }
}

.go__top {
  display: none;
}
@media (min-width: 768px) {
  .go__top {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    bottom: 15%;
    right: 5%;
    background: hsl(205, 100%, 35%);
    color: hsl(0, 0%, 100%);
    text-align: center;
    line-height: 40px;
    font-size: 2.2rem;
  }
  .go__top:hover {
    background: hsl(0, 0%, 100%);
    color: hsl(205, 100%, 35%);
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: hsl(0, 0%, 100%);
  box-shadow: -1px 0 15px rgba(7, 112, 103, 0.05);
}
.header .container {
  height: 9.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .header .container {
    height: 9.5rem;
  }
}

.burger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;
}
.burger.active .one {
  width: 100%;
  transform: rotate(45deg);
  background: hsl(0, 0%, 100%);
}
.burger.active .twoo {
  display: none;
}
.burger.active .three {
  transform: rotate(-45deg);
  margin-top: -12px;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger .one,
.burger .twoo,
.burger .three {
  width: 100%;
  height: 3px;
  background: hsl(205, 100%, 35%);
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.nav {
  position: relative;
}
@media (max-width: 1023px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: hsl(205, 100%, 35%);
    transition: 0.4s;
  }
  .nav.active {
    right: 0;
  }
}
.nav__menu {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .nav__menu {
    flex-direction: row;
    gap: 5px;
  }
}
.nav__link {
  font-size: 3rem;
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  padding: 20px 25px;
  display: block;
}
@media (min-width: 1024px) {
  .nav__link {
    font-size: 1.4rem;
    padding: 10px 15px;
    color: hsl(205, 100%, 35%);
  }
}
.nav__link:hover {
  background: hsl(205, 100%, 35%);
  color: hsl(0, 0%, 100%);
}

.footer {
  padding: 30px 0;
  background: hsl(205, 100%, 35%);
  color: hsl(0, 0%, 100%);
}
.footer__content {
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer a {
  font-size: 1.3rem;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
.footer .social-media {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .social-media {
    margin-bottom: 0;
  }
}

.localizacao iframe {
  width: 100%;
  height: 500px;
  margin: auto;
}

.contato .section__description {
  max-width: 100%;
}
.contato.container {
  max-width: 70%;
}
@media (min-width: 768px) {
  .contato.container {
    max-width: 40%;
  }
}
@media (min-width: 1200px) {
  .contato.container {
    max-width: 75%;
  }
}
.contato__button {
  background: hsl(205, 100%, 35%);
  color: hsl(0, 0%, 100%) !important;
  text-transform: uppercase;
  margin-top: 2rem;
  cursor: pointer;
  border-bottom: none !important;
  -webkit-appearance: none;
}
.contato form {
  margin: auto;
  box-sizing: border-box;
}
.contato input,
.contato textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 15px;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  border: none;
  border-bottom: 1px solid hsl(0, 0%, 55%);
  outline: none;
  color: hsl(205, 100%, 35%);
}
.contato ::-webkit-input-placeholder {
  opacity: 0.4;
}
.contato textarea {
  min-height: 200px;
}

.archive {
  background: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 55%) !important;
}

.news.section {
  padding: 0 0 7rem;
}
@media (min-width: 768px) {
  .news.section {
    padding: 2rem 0 7rem;
  }
}
.news__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 10px;
  gap: 8px;
}
.news__content {
  display: flex;
  flex-direction: column;
  padding: 15px 30px;
}
.news__img {
  margin: auto;
  width: 300px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .news__img {
    margin: 0;
  }
}

.clientes__grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  row-gap: 70px;
}
.clientes__grid__distr {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  row-gap: 50px;
}
.clientes__img {
  -o-object-position: center;
     object-position: center;
  margin: auto;
}

.fornecedores__grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  row-gap: 70px;
}
.fornecedores__grid__distr {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  row-gap: 50px;
}
.fornecedores__img {
  -o-object-position: center;
     object-position: center;
  margin: auto;
}/*# sourceMappingURL=main.css.map */