@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;700&display=swap');

* {
  margin: 0px;
}

*:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #E5E5E5;
  font-family: 'Poppins', sans-serif;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* padrão */
}

html,
body {
    overflow-x: hidden;
}

.promo-alert {
  background-color: black;
  text-align: center;
  padding: 10px 50px;
}

.promo-alert h3 {
  font-weight: normal;
  color: white;
}

.home {
  width: 100vw;
  height: 100vh;
  background-image: url(img/BANNER_Equipado.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
}

/* Mudanças Banner Responsivo */

@media screen and (max-width: 1520px) {
  .home {
    background-image: url(img/BANNER_Equipado_1520.png);
  }
}

@media screen and (max-width: 1207px) {
  .home {
    background-image: url(img/BANNER_Equipado_1207.png);
  }
}

@media screen and (max-width: 1050px) {
  .home {
    background-image: url(img/BANNER_Equipado_1050.png);
  }
}

@media screen and (max-width: 700px) {
  .home {
    background-image: url(img/BANNER_Equipado_700.png);
  }
}

@media screen and (max-width: 579px) {
  .home {
    background-image: url(img/BANNER_Equipado_579_2.png);
  }
}

@media screen and (max-width: 527px) {
  .home {
    background-image: url(img/BANNER_Equipado_527_2.png);
  }
}

/* Fim mudanças banner responsivo */

.home-title {
  text-align: center;
  margin-top: 25vh;
  margin-bottom: 10vh;
  transition: .3s;
}

.home-title h1 {
  font-size: 50px;
  color: white;
  margin: 20px 0px;

}

.home-title a {
  background-color: #58C477;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-size: 30px;
  padding: 5px 20px;
  font-weight: bold;
  box-sizing: border-box;
  transition: .3s;
  display: inline-block;
  box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -webkit-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -moz-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
}

.home-title a:hover {
  transition: .3s;
  transform: scale(1.1);
}

.home-title span {
  color: #58C477;
}

@media screen and (max-width:500px) {
  .home-title {
    margin-top: 20vh;
  } }

  @media screen and (max-width:425px) {
    .home-title h1 {
      font-size: 40px;
    }

    .home-title a {
      font-size: 20px;
    }
}

/*** PORTFOLIO ***/

.portfolio {
  text-align: center;
  background-color: none;
  width: 100%;
  height: 100%;
}

.portfolio-design {
  padding-top: 25px;
  padding-bottom: 25px;
}

.portfolio h1 {
  margin: 10px 20px;
  font-size: 40px;
  color: black;
}

.portfolio h3 {
  color: black;
  font-weight: lighter;
}

.portfolio a {
  margin-top: 20px;
  margin-bottom: 10px;
  background-color: #58C477;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-size: 23px;
  padding: 5px 40px;
  font-weight: bold;
  box-sizing: border-box;
  transition: .3s;
  display: inline-block;
  box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -webkit-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -moz-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
}

.portfolio a:hover {
  transition: .3s;
  transform: scale(1.1);
}

@media screen and (max-width: 425px) {
  .portfolio a {
    font-size: 25px;
  }
}

@media screen and (max-width: 425px) {
  .portfolio a {
    font-size: 20px;
  }
}

@media screen and (max-width:626px) {
  .portfolio h1 {
    font-size: 32px;
    line-height: 37px;
  }
}

/*** CATEGORIAS ***/

.categories {
  text-align: center;
  background-color: #202020;
  width: 100%;
  height: 100%;
}

.categories h3 {
  color: black;
  font-weight: lighter;
}


/*** SLIDE ***/

.slider {
  height: 250px;
  margin: 50px auto 50px auto;
  position: relative;
  width: 90%;
  display: grid;
}

.slide-track {
  display: flex;
  width: calc(240px * 20);
  animation: scroll 40s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 10));
  }
}

.slide {
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}

.slide img {
  width: 100%;
  transition: .3s;
}

.slide img:hover {
  transform: translateZ(10px);
  transition: .3s;
}

/*** FIM SLIDE ***/

/*** SLIDE TEXTO ***/

.slider-c {
  margin: auto;
  position: relative;
  width: 150%;
  display: grid;
}

.slide-c-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-140px * 7));
  }
}

.slide-c {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  perspective: 100px;
}

.slide-c h3 {
  margin: 10px 20px;
  font-size: 25px;
  color: #58C477;
  font-weight: bold;
}

/*** FIM SLIDE TEXTO ***/

.delivery {
  text-align: left;
  padding: 25px 50px;
}

.delivery h1 {
  color: #58C477;
  font-size: 50px;
  margin: 0px 50px;
  line-height: 55px;
}

.delivery h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 0px 50px;
}

.delivery span {
  color: #58C477;
}

.shipping {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.shipping-text {
  display: flex;
  flex-direction: column !important;
  margin: 0px 50px;
}

.shipping-icon {
  margin: 0px 50px;
}

.shipping-icon svg {
  width: 350px;
  height: 350px;
  margin: 0px 50px;
}

@media screen and (max-width: 1250px) {
  .delivery h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .delivery h3 {
    font-size: 15px;
  }

  .shipping-icon svg {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 1100px) {
  .delivery h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .delivery h3 {
    font-size: 10px;
  }

  .shipping-icon svg {
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 850px) {

  .delivery {
    text-align: center;
  }

  .shipping {
    flex-direction: column;
  }

  .delivery h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .delivery h3 {
    font-size: 20px;
  }

  .shipping-icon svg {
    display: none;
  }
}

@media screen and (max-width: 670px) {
  .delivery h1 {
    margin: 0;
  }

  .delivery h3 {
    margin: 0;
  }
}

/*** CONTACTOS ***/

.contacts {
  background-color: #202020;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 25px 20px;
}

.contacts div {
  margin: 20px 0px
}

.contacts h2 {
  font-size: 20px;
  font-weight: lighter;
  line-height: 25px;
  margin: 10px 0px;
}

.contacts h1 {
  font-size: 35px;
  color: #fff;
  line-height: 40px;
  margin: 10px 0px;
}

.contacts a {
  margin: 10px 0px;
  background-color: #58C477;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding: 5px 30px;
  width: 300px;
  font-weight: bold;
  box-sizing: border-box;
  transition: .3s;
  display: inline-block;
  box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -webkit-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
  -moz-box-shadow: -1px 2px 18px 3px rgba(88, 196, 119);
}

.contacts a:hover {
  transition: .3s;
  transform: scale(1.1);
}


@media screen and (max-width: 1100px) {

  .contacts a {
    font-size: 15px;
    width: 200px;
  }
}

@media screen and (max-width: 425px) {
  .contacts a {
    font-size: 20px;
  }
}

@media screen and (max-width: 350px) {
    .contacts a {
      font-size: 22px;
    }
}

/*** FIM CONTACTOS ***/

/*** FOOTER ***/

.footer {
  background-color: #0D0D0D;
  color: white;
  text-align: center;
  padding: 20px 50px;
}

.footer a {
  text-decoration: none;
  list-style: none;
  color: white;
  margin: 0px 20px;
  transition: .3s;
}

.footer a:hover {
  color: #58C477;
  transition: .3s;
}

.grupo-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 540px) {
  .grupo-1 {
    flex-direction: column;
  }

  .footer a {
    margin: 5px 0px;
  }
}

.copyright {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 50px;
}

/*** FIM FOOTER ***/

/*** PRIVACY***/

.privacy {
  margin: 30px 50px;
}

.privacy p {
  text-align: left;
}

.privacy h4 {
  text-align: left;
  font-style: italic;
  font-weight: lighter;
  margin: 15px 0px;
}

.privacy h2 {
  font-weight: bold;
  text-align: left;
  margin: 15px 0px;
}

.devolucoes {
  height: 100vh;
}