.container {
  margin: 0 0 2rem 0 !important;
}

/* Slideshow container */
.slideshow-container {
  height: 60vh;
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
  height: 60vh;
  object-fit: cover;
  width: 100%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: var(--light);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: var(--light);
  font-size: 1.5rem;
  padding: 1.5rem;
  position: absolute;
  top: 0;
}

/* Caption text */
.text {
  color: var(--light);
  font-size: 2rem;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  width: 100%;
  max-width: 80%;
  text-align: center;
  padding: 1rem;
  background: var(--blue);
  transform: translate(-50%, 0);
  opacity: 0.9;
  border-radius: 0.2rem;
}

.dots {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  z-index: 20;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #807d7d;
  border: 2px solid #eb8aeb;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: .5s;
  animation-name: fade;
  animation-duration: .5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  padding: 2rem;
  background: var(--light);
  width: 100%;
  text-align: center;
  color: var(--dark);
}

.section > p {
  font-size: 1.2rem;
  max-width: 80%;
  text-align: center;
}

.produtos-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.produto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 2rem;
}

.produto a {
  text-decoration: none;
  color: var(--dark);
  text-align: center;
}

.produto > a > img {
  width: 17vw;
  height: 17vw;
  object-fit: cover;
}

.produto > a > h2 {
  margin: 0.8rem;
}

.produto a:hover {
  text-decoration: underline;
}

.produto p.preco {
  font-size: 1.2rem;
}

.newsletter-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

form#newsletter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

form#newsletter > * {
  width: 30%;
  margin: 0 0.5rem;
}

input {
  padding: 0.8rem;
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid var(--dark);
  transition: border .3s linear;
}

input:focus {
  outline: none;
  border: 1px solid var(--blue);
}

.btn {
  height: 3rem;
  width: 100%;
  max-width: 13rem;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: var(--light);
  border-radius: 0.2rem;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.btn {
    transition: all .2s ease;
  }

.btn:hover {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: var(--light);
  }
}


@media only screen and (max-width: 850px) {
  .produtos-container {
    flex-direction: column;
  }

  .produto > a > img {
    width: 50vw;
    height: 50vw;
    object-fit: cover;
  }

  form#newsletter {
    flex-direction: column;
  }

  form#newsletter > * {
    width: 80%;
    margin: 0.5rem 0;
  }

  .btn {
    max-width: initial;
  }
}