#insta-posts {
    margin-top: 46px;
    margin-bottom: 66px;
  }

    .instagram h4{
        text-align: center;
        font-size: 24px;
        color: #004A77;
        font-weight: 700;
        margin: 30px auto
    }
  
  .insta-posts-list {
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    justify-content: center;
    width: calc(100vw - 20px);
    padding: 0 10px;
  }
  
  @media (min-width: 1024px) {
    .insta-posts-list {
      max-width: 1268px;
      padding: 0 40px;
      width: calc(100vw - 80px);
    }
  }
  
  .insta-post-item {
    max-width: 400px;
    overflow: hidden;
    display: flex;
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .insta-post-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .insta-post-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background-image: url('https://geografica.vteximg.com.br/arquivos/instagram-icon-v6.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
  }
  
  .insta-post-item:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .insta-post-item:hover::before {
    opacity: 1;
  }
  
  .insta-post-image {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    padding: 2px;
    position: relative;
  }
  
  @media (min-width: 1024px) {
    .insta-post-image {
      width: 250px;
      height: 250px;
    }
  }
  
  .insta .slide {
    width: 200px;
    margin-right: 10px;
  }
  