@import url("https://fonts.googleapis.com/css2?family=Allura&family=Roboto:wght@100;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Icon 1 */
#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 40px;
  height: 20px;
  position: relative;
  margin: 8px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon1:hover span, #nav-icon2:hover span, #nav-icon3:hover span, #nav-icon4:hover span {
  background: #d3531a;
}
#nav-icon1.open span, #nav-icon2.open span, #nav-icon3.open span, #nav-icon4.open span {
  background: #d3531a;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 8px;
}

#nav-icon1 span:nth-child(3) {
  top: 16px;
}

#nav-icon1.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Icon 2 */
#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 16px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 4px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 4px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 14px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 14px;
}

/* Icon 3 */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
#nav-icon4 span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

html,
body {
  margin: 0px !important;
  padding: 0px !important;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden;
}

.btnWhatsapp {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 2222;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

button {
  border: 0px;
}

a {
  text-decoration: none !important;
  transition: all 0.5s ease;
}

p {
  font-size: 18px;
  color: #000000;
}

h1 {
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
}

h2 {
  font-size: 34px;
  line-height: 34px;
}

.btn-padrao {
  padding: 15px 30px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  background-color: #cf0c13;
  display: inline-flex;
  width: -moz-min-content;
  width: min-content;
  text-wrap: nowrap;
  border-radius: 10px;
  text-transform: uppercase;
}
.btn-padrao:hover {
  color: #fff;
  background-color: #000;
}

header {
  position: relative;
  height: 100vh;
  top: 0px;
  background-image: url(../img/img-topo.jpg);
  background-size: 60% 100vh;
  background-position: right center;
  background-repeat: no-repeat;
}
header .box {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100vh;
  width: 50%;
  background-color: #355b7a;
  border-radius: 0px 0px 130px 0px;
}
header .topo {
  position: absolute;
  width: 100%;
  z-index: 100;
}
header .topo .conteudo {
  display: flex;
  flex-direction: column;
  padding: 50px 0px;
  row-gap: 50px;
  justify-content: center;
  height: 100vh;
}
header .topo .conteudo h1 {
  color: #fff;
}
header .topo .conteudo h2 {
  color: #fff;
  padding-right: 50px;
}
header.equipamentos {
  text-transform: uppercase;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
header.equipamentos .conteudo {
  justify-content: flex-start;
  height: -moz-min-content;
  height: min-content;
}
header.equipamentos .container {
  position: relative;
}
header.equipamentos .container .img-equipamento {
  position: absolute;
  top: 155px;
  left: 300px;
  width: 800px;
}
header.equipamentos .container .img-selo {
  position: absolute;
  top: 50px;
  right: 0px;
}
header.equipamentos .box {
  width: 45%;
  background-color: #9c2b5c;
}

#pecas {
  padding: 90px 0px;
}
#pecas h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  color: #355b7a;
}
#pecas p {
  font-size: 24px;
  color: #666666;
  text-align: justify;
  margin-bottom: 40px;
}
#pecas .produtos {
  margin-top: 90px;
}
#pecas .produtos .itens {
  margin-bottom: 40px;
}
#pecas .produtos .itens img {
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
#pecas .produtos .itens h3 {
  padding: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #355b7a;
  text-transform: uppercase;
}
#pecas .produtos .botao {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pecas.equipamentos h2 {
  color: #9c2b5c !important;
}
#pecas.equipamentos .produtos .itens img {
  height: auto;
}
#pecas.equipamentos .produtos .itens h3 {
  padding: 0px;
  color: #9c2b5c !important;
}
#pecas.equipamentos .produtos .itens h3 small {
  display: block;
  color: #666666;
  font-size: 20px;
}
#pecas.equipamentos .produtos .botao {
  margin-top: 50px;
}

#diferenciais {
  padding: 90px 0px;
  background-color: #cf0c13;
}
#diferenciais .titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#diferenciais .titulo h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
}
#diferenciais .titulo .btn-padrao {
  background-color: #fff;
  color: #cf0c13;
}
#diferenciais .titulo .btn-padrao:hover {
  background-color: #000;
  color: #fff;
}
#diferenciais .itens {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  row-gap: 30px;
  margin-top: 70px;
}
#diferenciais .itens img {
  max-width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
#diferenciais .itens p {
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
}

#faca-um-orcamento {
  padding: 90px 0px;
  background-color: #355b7a;
}
#faca-um-orcamento h3 {
  font-size: 38px;
  color: #fff;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
#faca-um-orcamento h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 50px;
}
#faca-um-orcamento p {
  text-align: justify;
  color: #fff;
}
#faca-um-orcamento form input {
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #355b7a;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  width: 100%;
}
#faca-um-orcamento form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5490196078);
  opacity: 1;
  /* Firefox */
}
#faca-um-orcamento form input::placeholder {
  color: rgba(255, 255, 255, 0.5490196078);
  opacity: 1;
  /* Firefox */
}
#faca-um-orcamento form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(255, 255, 255, 0.5490196078);
}
#faca-um-orcamento form select {
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #355b7a;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  width: 100%;
}
#faca-um-orcamento form .acao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
#faca-um-orcamento form .acao .aceite {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: flex-start;
  color: #fff;
  font-size: 16px;
}
#faca-um-orcamento form .acao .aceite input {
  width: -moz-min-content;
  width: min-content;
  margin: 0px;
  padding: 0px;
}
#faca-um-orcamento form .acao .aceite a {
  color: #fff;
  font-size: 16px;
}
#faca-um-orcamento form .acao .aceite a:hover {
  color: #000;
}
#faca-um-orcamento.equipamentos {
  background-color: #9c2b5c;
}
#faca-um-orcamento.equipamentos form input,
#faca-um-orcamento.equipamentos form select {
  background-color: #9c2b5c;
}

footer {
  background-color: #2c2c2c;
  padding: 50px 0px 0px 0px;
}
footer .rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
footer .rodape .logo {
  max-width: 255px;
}
footer .rodape address {
  color: #fff;
  font-size: 14px;
}
footer .rodape .selos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .rodape .selos img {
  max-width: 185px;
}
footer .copy {
  padding: 30px 0px;
  margin-top: 50px;
  font-size: 14px;
  color: #666666;
  text-align: center;
  background-color: #000000;
}
footer .copy a {
  color: #666666;
}
footer .copy a:hover {
  color: #fff;
}

#voltar {
  display: block;
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 15px;
  background-color: #eb212e;
  color: #fff;
  z-index: 999;
  text-transform: capitalize;
  border-radius: 30px;
}

@media (max-width: 980px) {
  html,
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  h1,
  h2,
  h3 {
    font-size: 28px !important;
    line-height: 28px !important;
  }
  p {
    font-size: 18px !important;
  }
  header .img-equipamento {
    display: none;
  }
  header .img-selo {
    display: none;
  }
  header.equipamentos {
    background-color: #9c2b5c;
  }
  .btn-padrao {
    width: 100%;
    text-wrap: unset;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  footer .logos {
    flex-direction: column;
    row-gap: 30px;
  }
  #voltar {
    bottom: 15px;
    left: 15px;
  }
  header .box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  header h2 {
    font-size: 28px;
    line-height: 28px;
  }
  #pecas h2 {
    font-size: 50px;
    line-height: 50px;
  }
  #pecas .produtos .itens img {
    height: 250px;
    width: 100%;
  }
  #diferenciais .titulo {
    flex-direction: column;
  }
  #diferenciais .titulo h2 {
    font-size: 50px;
    line-height: 50px;
  }
  #faca-um-orcamento h2 {
    font-size: 50px;
    line-height: 50px;
  }
  footer .rodape {
    flex-direction: column;
    row-gap: 50px;
  }
  footer .rodape .selos {
    flex-direction: column;
    row-gap: 25px;
  }
}/*# sourceMappingURL=main.css.map */