body {
  position: relative !important;
}

.container-produtos {
  width: 95vw !important;
  position: relative !important;
  z-index: 11;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 1920px !important;

  margin-top: 3em;
  margin-bottom: 2em;

  gap: 0 0.75em;
}

.card-produto {
  /* border: 1px dashed blue; */
  flex-grow: 0;
  flex-shrink: 1;
  position: relative;
  overflow: visible;

  .selo {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 80px;
  }

  .modal-content {
    display: none !important;
  }

  .imagem {
    border-top-left-radius: 0.75em;
    border-top-right-radius: 0.75em;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 400/222;
    background: #eee;

    img {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      object-fit: cover;
    }
  }

  .container-titulo {
    background: #066A36;
    margin: 0;
    padding: 0.75em 1em;
    border-bottom-left-radius: 0.75em;
    border-bottom-right-radius: 0.75em;
  }

  .titulo {
    font-family: Montserrat, sans-serif;
    color: #fff;
    font-weight: 800;
    font-size: 1.2em;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0;
  }

  /* &:hover {
    /* .card-overlay {
      display: flex;
      }
      transition: .15s ease;
      transform: scale(1.2);
      z-index: 13;
  } */

}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.card-overlay {
  position: absolute;
  background: white;
  display: none;
  z-index: 9999;
  pointer-events: auto;
  /* border: 1px solid red; */

  .selo {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 80px;
  }

  /* z-index: 12; */
  /* display: none; */
  /* position: absolute; */
  /* width: calc(100% + 4em); */
  /* min-height: calc(100% + 4em); */
  /* top: -2em; */
  /* left: -2em; */
  /* overflow: hidden; */
  box-shadow: 0 8px 12px rgba(0,0,0,0.25);
  border-radius: 0.5em;
  overflow: hidden;

  &.active {
    animation: zoomIn 0.2s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .imagem {
    flex-grow: 0;
    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
    width: 100%;
    aspect-ratio: 400/222;
    background: #eee;
    overflow: hidden;

    img {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      object-fit: cover;
    }
  }

  .container-textos {
    background: #fff;
    padding: 1.25em 1.5em 1.5em;
    flex-grow: 1;
    width: 100%;
  }

  .titulo {
    color: #333;
    background: none;
    margin-bottom: 0.25em;
    font-weight: 800;
    font-size: 1.25em;
  }

  .resumo {
    color: #777;
    /* #3fad62
    #096030 */
  }


  .saiba-mais {
    display: inline-block;
    box-shadow: none;
    border: none;
    outline: none;
    background: #23B360;
    border-radius: 1.125em;
    padding: 0.375em 1.5em;
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 1em;
    transition: .15s ease;

    &:hover {
      filter: brightness(1.1)
    }

    &:active {
      filter: brightness(1.2)
    }
  }
}


.slider-produtos {
  width: 100%;

  .swiper-slide {
    max-width: 500px;
  }

  /* .swiper-slide {
    border-radius: 12px;
    padding: 1em;
    text-align: center;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
  } */


  .swiper-button-prev,
  .swiper-button-next {
    /* border-radius: 0.25em; */
    position: absolute;
    width: 1.5em;
    height: 2em;
    transform: translateY(-50%);
    background-image: none !important;
    color: #fff;
    background: rgba(0,0,0,0.25);
    font-size: 2em;
    margin-top: 0;
    border-radius: 0.25em;

    &:after {
      display: none !important;
    }

    @media(max-width: 768px) {
      display: none !important;
    }

    &:hover {
      background: rgba(0,0,0,0.4);
    }

    &.swiper-button-disabled {
      display: none !important;
    }

  }

  /* .swiper-button-prev {
    margin-left: -0.25em;
  }

  .swiper-button-next {
    margin-right: -0.25em;
  } */

}
