@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,700&display=swap");
body {
  min-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}

/* ini: Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f86230;
  /* cor do background que vai ocupar o body */
  z-index: 9999999;
  /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner-load {
  position: absolute;
  top: 47%;
  /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  transform: translate(-50%, -50%);
}

.bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: 20px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: animarBola;
          animation-name: animarBola;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.bolas > div:nth-child(1) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

.bolas > div:nth-child(2) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.bolas > div:nth-child(3) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

@-webkit-keyframes animarBola {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  16% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animarBola {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  16% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    transform: scale(1);
    opacity: 1;
  }
}
/* end: Preloader */
/* BARRA DE NAVEGAÇÃO */
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  align-items: left;
  width: 6px;
  border-radius: 10px;
  background-color: #f86230;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(180, 69, 32);
}

/*END BARRA DE NAVEGAÇÃO*/
#alert {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 250px;
  height: auto;
  padding: 15px;
  background-color: #fff;
  font-size: 0.9rem;
  color: #0F0F0F;
  right: -25%;
  top: 10%;
  z-index: 9999998;
  box-shadow: 0px 5px 30px 0px rgba(43, 43, 43, 0.233);
  opacity: 0;
  transition: 0.6;
  transform: scale(1);
}

#alert p {
  position: relative;
  line-break: loose;
}

#alert.sucess {
  -webkit-animation: left;
          animation: left;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  border-bottom: 7px solid #38af3e;
}
#alert.sucess#alert.sucess .title {
  padding: 0px 0px 2px 0px;
  font-size: 0.9rem;
  font-weight: 5050;
  color: #38af3e;
}

#alert.erro {
  border-bottom: 7px solid #f71717;
  -webkit-animation: left;
          animation: left;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
#alert.erro#alert.erro .title {
  padding: 0px 0px 2px 0px;
  font-size: 0.9rem;
  font-weight: 5050;
  color: #f71717;
}

#alert.warning {
  border-bottom: 7px solid #f7ce17;
  -webkit-animation: left;
          animation: left;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
#alert.warning#alert.warning .title {
  padding: 0px 0px 2px 0px;
  font-size: 0.9rem;
  font-weight: 5050;
  color: #f7ce17;
}

@-webkit-keyframes left {
  0% {
    opacity: 0;
    right: -25%;
  }
  20%, 30%, 50%, 70% {
    opacity: 1;
    right: 5%;
  }
  100% {
    right: -25%;
    opacity: 0;
  }
}

@keyframes left {
  0% {
    opacity: 0;
    right: -25%;
  }
  20%, 30%, 50%, 70% {
    opacity: 1;
    right: 5%;
  }
  100% {
    right: -25%;
    opacity: 0;
  }
}
/* STICKY NAVBAR */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: end;
  background-color: #fff;
  align-items: center;
  padding: 2vh 50px;
  z-index: 10000;
  transition: 0.6s;
  box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.185);
}

.ban {
  position: absolute;
  top: 0px;
  left: 0;
}

nav .logo {
  position: relative;
  color: rgb(0, 0, 0);
  transition: 0.6s;
}

nav .logo img {
  width: 320px;
}

nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
}

nav ul li a {
  position: relative;
  margin: 0 5px;
  border-radius: 2px;
  padding: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgb(0, 0, 0);
  letter-spacing: 0.5px;
  font-weight: 450;
  transition: 0.3s;
}

nav ul .li a:after {
  content: "";
  position: absolute;
  background-color: #f86230;
  height: 3px;
  width: 0;
  left: 0;
  bottom: 2px;
  transition: 0.4s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul .prod {
  background-color: #000000;
  transition: 0.3s;
}

nav ul .prod a {
  color: #fff;
}

nav ul .prod:hover {
  background-color: #f86230;
  box-shadow: -1px 0px 15px -3px #f86230;
}

nav ul li a::after {
  content: "";
  position: absolute;
  background-color: #f86230;
  height: 3px;
  width: 0;
  left: 0;
  bottom: 2px;
  transition: 0.3s;
}

nav ul .li a:hover {
  color: #000000;
}

/* End - STICKY NAVBAR*/
/* HAMBURGUER */
.hamburguer {
  display: none;
  cursor: pointer;
  top: 15%;
  right: 15%;
  width: 120px;
  height: 100px;
  z-index: 1000;
  border-radius: 2px;
}

.hamburguer::after {
  content: "";
  position: relative;
  width: 80%;
  height: 14px;
  background-color: #000000;
  z-index: 1000;
  transition: 0.6s ease;
}

.hamburguer::before {
  content: "";
  position: relative;
  width: 80%;
  height: 14px;
  background-color: #000000;
  z-index: 1000;
  transition: 0.6s ease;
}

#hamburguer:checked ~ label .hamburguer:after {
  background-color: #f86230;
  transform: rotate(-135deg);
  top: -30px;
  width: 90%;
}

#hamburguer:checked ~ label .hamburguer::before {
  background-color: #f86230;
  transform: rotate(135deg);
  margin-top: 15px;
  width: 90%;
}

#hamburguer:checked ~ label .hamburguer {
  position: fixed;
  top: 5.5%;
}

.org {
  display: none;
}

.org {
  display: none;
}

/* MENU */
.menu {
  position: fixed;
  flex-direction: column;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8431372549);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  list-style: none;
  transition: 0.5s;
}

.menu.activate {
  right: -100%;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
}

.menu li {
  margin-bottom: 80px;
}

/* HAMBURGUER */
/* BANNER */
.banner {
  display: flex;
  justify-self: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/banner.png);
  background-size: cover;
}

.banner-services {
  display: flex;
  justify-self: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
}

/*SLIDER*/
.wrapper {
  max-width: 100%;
  position: relative;
}

.wrapper input {
  display: none;
}

.inner {
  width: 500%;
  line-height: 0;
}

article {
  width: 20%;
  float: left;
  position: relative;
}

article img {
  width: 100%;
}

/*---- SET UP CONTROL ----*/
.slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.slider-prev-next-control label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.7;
}

.slider-prev-next-control label:hover {
  opacity: 1;
}

.slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  transition: all 0.3s;
}

.slider-dot-control label:hover {
  background: #ccc;
  border-color: #777;
}

/* Info Box */
.info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  transition: all 1000ms ease-out 600ms;
}

.info.top-left {
  top: 30px;
  left: 30px;
}

.info.top-right {
  top: 30px;
  right: 30px;
}

.info.bottom-left {
  bottom: 30px;
  left: 30px;
}

.info.bottom-right {
  bottom: 30px;
  right: 30px;
}

/* Slider Styling */
.slider-wrapper {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background: #fff;
  background: #fcfff4;
  transform: translateZ(0);
  transition: all 500ms ease-out;
}

.slider-wrapper .inner {
  transform: translateZ(0);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

/*---- SET POSITION FOR SLIDE ----*/
#slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#slide1:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#slide4:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin: 0;
  line-height: 38px;
  font-size: 2.2em;
  display: block;
  color: rgb(255, 255, 255);
}

#slide4:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
  content: "\f105";
}

#slide4:checked ~ .slider-prev-next-control label:nth-child(1),
#slide3:checked ~ .slider-prev-next-control label:nth-child(4),
#slide2:checked ~ .slider-prev-next-control label:nth-child(3),
#slide1:checked ~ .slider-prev-next-control label:nth-child(2) {
  display: block;
  float: right;
  margin-right: 5px;
}

#slide4:checked ~ .slider-prev-next-control label:nth-child(3),
#slide3:checked ~ .slider-prev-next-control label:nth-child(2),
#slide2:checked ~ .slider-prev-next-control label:nth-child(1) {
  display: block;
  float: left;
  margin-left: 5px;
}

#slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after {
  content: "\f104";
  padding-left: 8px;
}

#slide4:checked ~ .slider-dot-control label:nth-child(4),
#slide3:checked ~ .slider-dot-control label:nth-child(3),
#slide2:checked ~ .slider-dot-control label:nth-child(2),
#slide1:checked ~ .slider-dot-control label:nth-child(1) {
  background: #333;
}

#slide4:checked ~ .slider-wrapper article:nth-child(4) .info,
#slide3:checked ~ .slider-wrapper article:nth-child(3) .info,
#slide2:checked ~ .slider-wrapper article:nth-child(2) .info,
#slide1:checked ~ .slider-wrapper article:nth-child(1) .info {
  opacity: 1;
}

#slide1:checked ~ .slider-wrapper .inner {
  margin-left: 0%;
}

#slide2:checked ~ .slider-wrapper .inner {
  margin-left: -100%;
}

#slide3:checked ~ .slider-wrapper .inner {
  margin-left: -200%;
}

#slide4:checked ~ .slider-wrapper .inner {
  margin-left: -300%;
}

/*---- TABLET ----*/
@media only screen and (max-width: 850px) and (min-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }
}
/*---- MOBILE----*/
@media only screen and (max-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }
  .slider-wrapper .info {
    opacity: 0;
  }
}
/*END - SLIDER*/
.org-infos {
  display: flex;
  justify-self: center;
  align-items: center;
  position: relative;
  height: 100%;
  width: 80%;
}

.infos {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  justify-content: center;
  position: relative;
  width: 50%;
  color: #fff;
}

.infos h1 {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.fa-bolt {
  cursor: pointer;
  color: #f86230;
  transform: scale(1);
  transition: 0.3s;
}

.fa-bolt:hover {
  transform: scale(1.08);
}

.og {
  font-style: normal;
  color: #f86230;
}

.infos h3 {
  position: relative;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
}

#og-but {
  position: relative;
  text-align: center;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.9rem;
  margin-top: 20px;
  width: 120px;
  font-weight: 500;
  background-color: #f86230;
  color: #FFF;
  cursor: pointer;
  transition: 0.4s;
}

#og-but:hover {
  box-shadow: -1px 0px 15px -2px #f86230;
}

/*END BANNER*/
.org-medals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to bottom, #ffffff, #fbfbfb, #f7f7f7, #f4f4f4, #f0f0f0);
  width: 100%;
  padding: 20px 0px;
}

.grid-medals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 80%;
  height: 15vh;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.562);
}

.grid-medals div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  text-align: left;
  color: #fff;
  background-color: #231F20;
  font-size: 82%;
  line-height: 18px;
  padding: 20px;
  max-width: 100%;
  min-width: 80%;
  height: 15vh;
  transform: scale(1);
  border-left: 1.5px solid #2e2b2b;
  transition: 0.4s;
}

.grid-medals div:hover {
  color: #fff;
  transform: scale(1.15);
  background-color: #f86230;
  border-left: none;
  z-index: 1;
}

.grid-medals div:hover i {
  color: #fff;
}

.grid-medals div i {
  font-size: 2rem;
  padding: 20px 10px;
  color: #f86230;
}

.medal1 {
  grid-area: 1/1/2/2;
}

.medal2 {
  grid-area: 1/2/2/3;
}

.medal3 {
  grid-area: 1/3/2/4;
}

.medal4 {
  grid-area: 1/4/2/5;
}

.medal5 {
  grid-area: 1/5/2/6;
}

/*CARROUSEL FORNECEDORES*/
.before {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  background-color: #fff;
}

#before {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
  width: 100%;
  background-color: #fff;
}

.org-fornecedores {
  position: relative;
  width: 80%;
  height: 100%;
}

.container-fornecedores {
  margin: 0 auto;
  width: 250px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}

.carousel-fornecedores {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.carousel-fornecedores div {
  transform-style: preserve-3d;
}

.item {
  display: block;
  position: absolute;
  width: 230px;
  height: 180px;
  line-height: 200px;
  font-size: 5em;
  text-align: center;
  color: #FFF;
  transition: transform 1s;
  box-shadow: 10px 0px 20px 5px rgba(0, 0, 0, 0.315);
}
.item img {
  position: relative;
  width: 100%;
}

.a {
  transform: rotateY(0deg) translateZ(250px);
}

.b {
  transform: rotateY(60deg) translateZ(250px) rotateY(-60deg);
}

.c {
  transform: rotateY(120deg) translateZ(250px) rotateY(-120deg);
}

.d {
  transform: rotateY(180deg) translateZ(250px) rotateY(-180deg);
}

.e {
  transform: rotateY(240deg) translateZ(250px) rotateY(-240deg);
}

.f {
  transform: rotateY(300deg) translateZ(250px) rotateY(-300deg);
}

.prox,
.ante {
  font-size: 1.3rem;
  position: absolute;
  top: 80px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 200px;
  transition: 0.1s;
  background-color: #f87144;
  color: #000;
}

.prox:hover,
.ante:hover {
  box-shadow: -1px 0px 10px -3px #f86230;
}

.prox:active,
.ante:active {
  top: 84px;
  box-shadow: -1px 0px 20px -3px #f86230;
}

.prox {
  right: 5em;
}

.ante {
  left: 5em;
}

/*END  CARROUSEL FORNECEDORES*/
.apos {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #231F20;
  padding: 70px 0;
  max-width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: left;
  max-width: 80%;
}

.align-itens {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 0 40px 0;
}

.align-itens::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 8px;
  background-color: rgba(248, 98, 48, 0.6509803922);
  z-index: 9;
}

.radio-item {
  z-index: 10;
}

.radio-infos {
  position: relative;
  align-items: flex-start;
  width: 100%;
  height: 60vh;
}

.radio-infos span h1 {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.radio-infos span i {
  color: #f86230;
}

.radio-info1.aparence {
  display: unset;
}

.radio-info1 {
  display: none;
}

.radio-info2.aparence {
  display: unset;
}

.radio-info2 {
  display: none;
}

.radio-info3.aparence {
  display: unset;
}

.radio-info3 {
  display: none;
}

.radio-info4.aparence {
  display: unset;
}

.radio-info4 {
  display: none;
}

.radio-info5.aparence {
  display: unset;
}

.radio-info5 {
  display: none;
}

.radio-item a {
  color: rgb(241, 241, 241);
  text-decoration: none;
  padding: 9px 19px;
  font-size: 1.4rem;
  border-radius: 100px;
  background-color: #f86230;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.8274509804);
  transition: 0.4s;
}

.radio-item a:hover {
  box-shadow: 0px 5px 30px 10px #000000;
}

.container h1 {
  color: #f86230;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.container h2 {
  position: relative;
  color: #f86230;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  left: 4%;
  padding: 20px 0px 0px 0px;
}

.frame {
  margin-top: 20px;
  border: 2px solid #ffffff;
  box-shadow: -1px 0 70px 0px rgba(0, 0, 0, 0.082);
}

.frame iframe {
  height: 280px;
  width: 100%;
  z-index: 99999;
}

.container .continue {
  padding-top: 100px;
  font-size: 1.2;
  color: #f86230;
}

.container .continue strong {
  font-weight: 300;
  letter-spacing: -3px;
}

.container div {
  color: #fff;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 50px;
}

.grid-container div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
  min-width: 80%;
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.grid-container div img {
  width: 50%;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.185);
}

.one {
  grid-area: 1/1/2/2;
}

.two {
  grid-area: 1/2/2/3;
}

.three {
  grid-area: 1/3/2/4;
}

.four {
  grid-area: 2/1/3/2;
}

.five {
  grid-area: 2/2/3/3;
}

.six {
  grid-area: 2/3/3/4;
}

#up {
  text-align: center;
  position: fixed;
  background-color: #f86230;
  border-radius: 200px;
  font-size: 38px;
  right: -160px;
  bottom: 150px;
  transition: 0.4s;
  box-shadow: 0px 0px 30px -10px #f86230;
}

#up:hover {
  box-shadow: -1px 0px 20px -3px #f86230;
}

#up a {
  color: #000000;
  padding: 12px;
  transition: 0.6s;
}

#up.sky {
  right: 30px;
}

#wpp {
  text-align: center;
  position: fixed;
  background-color: #31BA45;
  border-radius: 200px;
  font-size: 38px;
  right: 30px;
  bottom: 50px;
  transition: 0.6s;
  box-shadow: 0px 0px 7px 0px #31BA45;
  z-index: 999999;
}

#wpp:hover {
  box-shadow: -1px 0px 20px -3px #31BA45;
}

#wpp a {
  color: #ffffff;
  padding: 12px;
  transition: 0.6s;
}

#wpp a:hover {
  color: #ffffff;
}

/* footer */
#footer-main {
  background-color: #0f0f0f;
  box-shadow: inset 0px 3px 0px 0px #f86230;
  padding: 20px 60px;
}

.footer-ap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 10px;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 180px;
}

.footer-4 i {
  color: #0F0F0F;
  background-color: #B9B9B9;
  font-size: 1.1rem;
  margin: 0px 10px 0px 0px;
  border-radius: 1px;
  padding: 5px;
}

@media (max-width: 1024px) {
  .footer-ap {
    padding-left: 20px;
  }
}
/* --------------------------
  ---------- styles ----------- 
  ---------------------------*/
#footer-main section {
  color: rgb(185, 185, 185);
  padding: 20px;
}

#footer-main h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

#footer-main p {
  font-size: 0.8rem;
}

#footer-main a {
  color: rgb(185, 185, 185);
}

.qr-img {
  margin-top: 10px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #4b4b4b;
  cursor: pointer;
  transition: 0.4s;
}

.qr-alert {
  display: none;
  position: absolute;
  font-size: 0.7rem;
  padding: 5px;
  background-color: #252525;
  border: 1px solid #4b4b4b;
  color: #a8a8a8;
  transition: 0.4s;
}

.qr-img:hover + .qr-alert {
  display: block;
}

.qr-img img {
  position: relative;
  width: 100%;
}

.last {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 7px 0px;
  background-color: #1d1d1d;
  color: rgb(180, 180, 180);
  font-size: 0.8rem;
}

.last div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.last .logo-footer img {
  display: inline;
  position: relative;
  margin-left: 7px;
  width: 50px;
}

.last a {
  color: rgb(180, 180, 180);
}

.last a:hover {
  color: #fff;
}

/* End - FOOTER*/
@media (max-width: 990px) {
  #alert {
    width: 380px;
    padding: 25px;
    font-size: 1.6rem;
  }
  #alert.sucess#alert.sucess .title {
    padding: 0px 0px 4px 0px;
    font-size: 1.6rem;
  }
  #alert.erro#alert.erro .title {
    padding: 0px 0px 4px 0px;
    font-size: 1.6rem;
  }
  #alert.warning#alert.warning .title {
    padding: 0px 0px 4px 0px;
    font-size: 1.6rem;
  }
  nav {
    padding: 3.6vh 50px;
    box-shadow: 0px 0px 90px 5px rgba(0, 0, 0, 0.185);
  }
  .ban {
    position: absolute;
    top: 0px;
    left: -240px;
  }
  nav .logo {
    position: relative;
    color: rgb(0, 0, 0);
    transition: 0.6s;
  }
  nav .logo img {
    width: 630px;
  }
  nav.sticky ul li a {
    color: #ffffff;
  }
  nav li:hover {
    background-color: none;
  }
  .header {
    display: none;
  }
  .hamburguer {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .org {
    display: unset;
  }
  .menu a {
    font-size: 2.5rem;
    transition: 0.6s;
  }
  .menu a:hover {
    letter-spacing: 4px;
  }
  /* BANNER */
  .banner {
    width: 100%;
    height: 100vh;
    background: url(../img/banner.png);
    background-size: cover;
    background-position-x: -300px;
  }
  .inner {
    width: 500%;
    line-height: 0;
  }
  article {
    width: 20%;
    float: left;
    position: relative;
  }
  article img {
    width: 200%;
    height: auto;
  }
  article img.left {
    position: relative;
    float: left;
  }
  article img.right {
    position: relative;
    float: right;
    z-index: 9;
  }
  .slider-wrapper {
    width: 100%;
    height: 50vh;
  }
  #slide1:checked ~ .slider-wrapper .inner {
    margin-left: 0%;
  }
  #slide1:checked ~ .slider-wrapper .inner article img.left {
    -webkit-animation: fade 2s;
            animation: fade 2s;
    z-index: 9;
  }
  #slide1:checked ~ .slider-wrapper .inner article img.right {
    z-index: 0;
  }
  #slide2:checked ~ .slider-wrapper .inner {
    margin-left: -100%;
  }
  #slide2:checked ~ .slider-wrapper .inner article img.left {
    z-index: 0;
  }
  #slide2:checked ~ .slider-wrapper .inner article img.right {
    -webkit-animation: fade 2s;
            animation: fade 2s;
    z-index: 9;
  }
  #slide3:checked ~ .slider-wrapper .inner {
    margin-left: -200%;
  }
  #slide3:checked ~ .slider-wrapper .inner article img.left {
    -webkit-animation: fade 2s;
            animation: fade 2s;
    z-index: 9;
  }
  #slide3:checked ~ .slider-wrapper .inner article img.right {
    z-index: 0;
  }
  #slide4:checked ~ .slider-wrapper .inner {
    margin-left: -300%;
  }
  #slide4:checked ~ .slider-wrapper .inner article img.left {
    z-index: 0;
  }
  #slide4:checked ~ .slider-wrapper .inner article img.right {
    -webkit-animation: fade 2s;
            animation: fade 2s;
    z-index: 9;
  }
  @-webkit-keyframes fade {
    0% {
      opacity: 0;
    }
    16% {
      opacity: 0.5;
    }
    33% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes fade {
    0% {
      opacity: 0;
    }
    16% {
      opacity: 0.5;
    }
    33% {
      transform: scale(1);
      opacity: 1;
    }
  }
  #slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#slide1:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#slide4:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#slide3:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
    font-size: 4em;
  }
  .slider-dot-control label {
    border-radius: 10px;
    width: 20px;
    height: 20px;
    margin: 5px;
  }
  .org-infos {
    height: 100%;
    width: 80%;
  }
  .infos {
    padding-bottom: 30px;
    width: 100%;
  }
  .infos h1 {
    font-size: 3.6rem;
    font-weight: 600;
  }
  .infos h3 {
    font-size: 2.3rem;
    line-height: 45px;
    font-weight: 300;
  }
  #og-but {
    font-size: 2.8rem;
    padding: 1.8rem;
    margin-top: 20px;
    width: 310px;
    text-transform: uppercase;
    font-weight: 500;
  }
  #og-but:hover {
    box-shadow: 0px 0px 80px 0px #f86230;
  }
  /*END BANNER*/
  .apos {
    height: 100%;
    width: 100%;
  }
  .container {
    width: 80%;
  }
  .container p {
    font-size: 1.5rem;
    padding-bottom: 150px;
  }
  .container h1 {
    font-size: 3.6rem;
    letter-spacing: 0.5px;
    padding: 120px 0px 100px 0px;
  }
  .container .space {
    font-size: 3.2rem;
    padding: 60px 0px 20px 0px;
  }
  .container h2 {
    font-size: 2.8rem;
  }
  .boxed p {
    font-size: 2.6rem;
  }
  .container .continue {
    padding-top: 100px;
    font-size: 2.2rem;
  }
  .container .continue strong {
    font-weight: 300;
    letter-spacing: -3px;
  }
  .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-row-gap: 20px;
  }
  .grid-container div {
    max-width: 100%;
    min-width: 80%;
    font-size: 1.1rem;
  }
  .grid-container div img {
    width: 50%;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.185);
  }
  .one {
    grid-area: 1/1/2/2;
  }
  .two {
    grid-area: 2/1/3/2;
  }
  .three {
    grid-area: 3/1/4/2;
  }
  .four {
    grid-area: 4/1/5/2;
  }
  .five {
    grid-area: 5/1/6/2;
  }
  .six {
    grid-area: 6/1/7/2;
  }
  #enable {
    display: none;
  }
  /*CARROUSEL FORNECEDORES*/
  .before {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%;
  }
  #before {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 240px 0;
    width: 100%;
  }
  .org-fornecedores {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
  }
  .container-fornecedores {
    margin: 0 auto;
    width: 250px;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
  }
  .carousel-fornecedores {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
  }
  .carousel-fornecedores div {
    transform-style: preserve-3d;
  }
  .item {
    display: block;
    position: absolute;
    top: -50px;
    left: -100px;
    width: 450px;
    height: 360px;
    line-height: 200px;
    font-size: 5em;
    color: #FFF;
    transition: transform 1s;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.315);
  }
  .item img {
    position: relative;
    width: 100%;
  }
  .prox,
.ante {
    font-size: 3.8rem;
    top: 80px;
    padding: 0.6rem 2rem;
    background-color: #f87144;
    color: #000;
  }
  .prox:hover,
.ante:hover {
    box-shadow: -1px 0px 10px -3px #f86230;
  }
  .prox:active,
.ante:active {
    top: 105px;
    box-shadow: -1px 0px 20px -3px #f86230;
  }
  .prox {
    top: 100px;
    right: 0em;
  }
  .ante {
    top: 100px;
    left: 0em;
  }
  /*END  CARROUSEL FORNECEDORES*/
  /*MEDALS*/
  .org-medals {
    width: 100%;
    padding: 80px 0px;
  }
  .grid-medals {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.562);
  }
  .grid-medals div {
    font-size: 2.2rem;
    line-height: 18px;
    padding: 65px 40px;
    width: 100%;
    height: 100%;
    border-left: none;
    border-bottom: 1.5px solid #2e2b2b;
    transition: 0.4s;
  }
  .grid-medals div:hover i {
    color: #fff;
    transform: scale(1.01);
    border-bottom: none;
  }
  .grid-medals div i {
    font-size: 2.8rem;
    padding: 0px 25px;
  }
  /*END - MEDALS*/
  /*CONTATO.HTML*/
  #banner-gen {
    justify-content: unset;
    position: relative;
    width: 100%;
    height: auto;
  }
  #container-gen {
    width: 80%;
    height: 70%;
    margin-top: 30%;
    flex-direction: column;
    box-shadow: 0px 0px 100px 15px rgba(0, 0, 0, 0.0901960784);
  }
  #container-gen h2 {
    font-size: 2.4rem;
    padding: 0px 0px 40px 0px;
  }
  #esquerda {
    height: 100%;
    padding: 140px 0px 200px 0px;
    overflow: visible;
  }
  #direita {
    height: 100%;
    padding: 140px 85px 200px 85px;
    overflow: visible;
    background-image: linear-gradient(to right top, #eeeeee, #f5f5f5);
  }
  #direita ul {
    list-style: none;
  }
  #direita ul li {
    padding-bottom: 7px;
  }
  #direita ul li i {
    padding-right: 5px;
  }
  #direita .texto {
    color: #000;
    text-decoration: none;
    font-size: 1.4rem;
  }
  #direita .texto i {
    margin-right: 40px;
    margin-bottom: 25px;
    padding: 16px;
    border-radius: 1px;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    transform: scale(1);
    transition: 0.6s;
  }
  #direita .texto .fa-whatsapp {
    font-size: 2.6rem;
    box-shadow: -1px 5px 15px -2px #31BA45;
    border-radius: 1px;
    background-color: #31BA45;
  }
  #direita .texto .fa-map-marker-alt {
    font-size: 2.4rem;
    padding: 16px 20px;
    box-shadow: -1px 5px 15px -2px #e62424;
    border-radius: 1px;
    background-color: #e62424;
  }
  #direita .texto i:hover {
    transform: scale(1.1);
  }
  /*Formulario*/
  form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  .flex-itens input:first-child {
    margin-right: 10px;
  }
  #esquerda form label {
    font-size: 1.4rem;
    padding: 28px 0px 0px 0px;
    color: #757575;
  }
  #esquerda form input {
    margin-bottom: 20px;
    padding: 14px 12px;
    font-size: 1.4rem;
    border: 2.4px solid #dadada;
    border-radius: 1px;
    transition: 0.4s;
  }
  #esquerda form input:hover {
    border: 2.4px solid #f86230;
  }
  #esquerda form input:focus {
    border: 2.4px solid #f86230;
    box-shadow: 0px 0px 1px 1px rgba(90, 167, 255, 0.329);
  }
  #esquerda form input[type=file] {
    cursor: pointer;
    padding: 14px 12px;
    font-size: 1.4rem;
    margin: 0;
  }
  #esquerda form textarea {
    max-width: 100%;
    max-height: 300px;
    padding: 14px 12px;
    font-size: 1.4rem;
    border: 2.4px solid #dadada;
    border-radius: 1px;
    resize: none;
    transition: 0.4s;
  }
  #esquerda form textarea:focus {
    border: 2.4px solid #f86230;
    box-shadow: 0px 0px 1px 1px rgba(90, 167, 255, 0.329);
  }
  #esquerda form textarea:hover {
    border: 2.4px solid #f86230;
  }
  #esquerda form button {
    margin: 20px 0px 0px 0px;
    padding: 25px 0px;
    font-size: 2.05rem;
    border: none;
    color: #fff;
    background-color: #f87144;
    box-shadow: 0px 8px 30px -6px #f87144;
    transition: 0.4s;
  }
  #esquerda form button:hover {
    background-color: #f86230;
    box-shadow: 0px 8px 30px 1px #f86230;
  }
  /*END - CONTATO.HTML*/
  /*SLIDER*/
  .menu-slide label {
    cursor: pointer;
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.486);
    border-radius: 50px;
    margin: 0 1.1em 1em;
    transition: 0.4s;
  }
  .menu-slide label:hover {
    background-color: #fff;
  }
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;
    padding: 8em 1em 0;
    background-size: cover;
    background-position: 50% 50%;
    transition: left 0s 0.75s;
  }
  [id^=slide]:checked + .slide {
    left: 0;
    z-index: 100;
    transition: left 0.65s ease-out;
  }
  *:checked {
    background-color: #fff;
  }
  .slide-1 {
    background-image: url();
    background-color: #ba3131;
  }
  .slide-2 {
    background-image: url();
    background-color: #3145ba;
  }
  .slide-3 {
    background-image: url();
    background-color: #31BA45;
  }
  .slide-dot-1:checked {
    width: 100px;
  }
  /*END - SLIDER*/
  #wpp {
    font-size: 80px;
    bottom: 60px;
    z-index: 999;
  }
  #wpp a {
    padding: 28px;
  }
  #up {
    font-size: 80px;
    bottom: 250px;
    z-index: 999;
  }
  #up a {
    padding: 28px;
  }
  #footer-main {
    box-shadow: inset 0px 3px 0px 0px #f86230;
    padding: 20px 60px;
  }
  .footer-ap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .footer-4 i {
    font-size: 2rem;
    margin: 0px 10px 0px 0px;
    border-radius: 1px;
    padding: 5px;
  }
  #footer-main h4 {
    font-size: 2.1rem;
  }
  #footer-main p {
    font-size: 1.2rem;
  }
  #footer-main img {
    width: 120px;
    height: 120px;
  }
  .last {
    padding: 30px;
    font-size: 1.5rem;
  }
  .last .logo-footer img {
    margin-left: 14px;
    width: 100px;
  }
}
/*CONTATO.HTML*/
.banner-gen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 110vh;
  background-color: #fff;
}

.container-gen {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 70%;
  background-color: #fff;
  box-shadow: 0px 15px 20px 5px rgba(0, 0, 0, 0.0901960784);
}

.esquerda {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 85px 80px 0px 80px;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

.esquerda h2 {
  padding: 0px 0px 15px 0px;
  color: #0f0f0f;
}

.direita {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 85px 80px 0px 80px;
  background-image: linear-gradient(to right top, #d8d8d8, #f5f5f5);
  color: rgb(0, 0, 0);
}

.org-direita {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.direita h2 {
  padding: 0px 0px 15px 0px;
}

.direita ul {
  list-style: none;
}

.direita ul li {
  padding-bottom: 7px;
}

.direita ul li i {
  padding-right: 5px;
}

.direita .texto i {
  margin-right: 20px;
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 1px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transform: scale(1);
  transition: 0.6s;
}

.direita .texto .fa-whatsapp {
  font-size: 1.7rem;
  box-shadow: -1px 5px 15px -2px #31BA45;
  border-radius: 1px;
  background-color: #31BA45;
}

.direita .texto .fa-map-marker-alt {
  font-size: 1.6rem;
  padding: 10px 12px;
  box-shadow: -1px 5px 15px -2px #e62424;
  border-radius: 1px;
  background-color: #e62424;
}

.direita .texto i:hover {
  transform: scale(1.1);
}

/*Formulario*/
form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.flex-itens {
  display: flex;
}

.flex-itens input {
  width: 100%;
}

.flex-itens input:first-child {
  margin-right: 5px;
}

form label {
  font-size: 0.8rem;
  padding: 7px 0px 0px 0px;
  color: #757575;
}

form input {
  margin-bottom: 15px;
  padding: 4px 6px;
  font-size: 0.8rem;
  border: 1.8px solid #dadada;
  border-radius: 1px;
  transition: 0.4s;
}

form input:hover {
  border: 1.8px solid #f86230;
}

form input:focus {
  border: 1.8px solid #f86230;
  box-shadow: 0px 0px 1px 1px rgba(90, 167, 255, 0.329);
}

form input[type=file] {
  cursor: pointer;
  padding: 12px 6px;
  font-size: 0.8rem;
  margin: 0;
}

form textarea {
  max-width: 100%;
  max-height: 50px;
  padding: 4px 6px;
  border: 1.8px solid #dadada;
  border-radius: 1px;
  resize: none;
  transition: 0.4s;
}

form textarea:focus {
  border: 1.8px solid #f86230;
  box-shadow: 0px 0px 1px 1px rgba(90, 167, 255, 0.329);
}

form textarea:hover {
  border: 1.8px solid #f86230;
}

form button {
  margin: 7px 0px 0px 0px;
  padding: 15px 0px;
  font-size: 1rem;
  border: none;
  color: #fff;
  background-color: #f87144;
  box-shadow: 0px 8px 30px -12px #f87144;
  transition: 0.4s;
}

form button:hover {
  background-color: #f86230;
  box-shadow: 0px 8px 30px -5px #f86230;
}

/*END - Formulario*/
/*END- CONTATO.HTML*//*# sourceMappingURL=main.css.map */