.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide > img{
    width:100%;
  }

  .produtos{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e7e7e7;
    border-bottom: 3px solid #BF9E80;
    margin: 25px;
    
  }

  .produtos_descricao{
    padding: 25px;
    text-align: center;
    max-width: 450px;
    height: 135px;
  }

  .produtos_fotos{
    width: 450px;
    height: 600px;
  }

  .cortinas{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  
  @media  (max-width: 650px){
 
    .produtos_fotos{
      width: 350px;
    }
  }