.img-1 {
    background-image: url('/img/minideezer.png');
  }
  .img-2 {
    background-image: url('caminho/para/sua/imagem2.jpg');
  }
  
  .img-3 {
    background-image: url('caminho/para/sua/imagem3.jpg');
  }
  
  .img-4 {
    background-image: url('caminho/para/sua/imagem4.jpg');
  }
    

.image-section {
    display: flex;
    align-items: center;

    padding: 30px;
    padding-left: 14%;
    padding-right: 14%;
  }


  .text {
    flex: 1;
    padding-right: 20px;
  }
  
  .text h2 {
    font-size: 35px;
    color: #333;
    margin-bottom: 10px;
    color: #ffffff;
    /* text-align: center; */
    margin-top: 72px;
    position: relative;
  }

  .text p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    font-family: 'Montserrat';
  }
  
  .images {
    display: flex;
  }
  
  .image {
    width: 100px;
    height: 100px;
    margin-right: 26px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
  }
  
  .image:nth-child(1) {
    animation: floatAnimation1 3s infinite ease-in-out alternate;
  }
  
  .image:nth-child(2) {
    animation: floatAnimation2 4s infinite ease-in-out alternate;
  }
  
  .image:nth-child(3) {
    animation: floatAnimation3 5s infinite ease-in-out alternate;
  }
  
  .image:nth-child(4) {
    animation: floatAnimation4 6s infinite ease-in-out alternate;
  }
  
  @keyframes floatAnimation1 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 8px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes floatAnimation2 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 12px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes floatAnimation3 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 6px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes floatAnimation4 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 10px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  
  .image:hover img {
    transform: scale(1.1);
  }
  
  @media screen and (max-width: 768px) {
    .image-section {
      flex-direction: column;

    }
  
    .text {
      padding-right: 0;
      margin-bottom: 20px;
    }
  
    .images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 30px;
    }
  
    .image {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
      animation: none;
    }
    .text h2{
        font-size: 31px;
        margin-bottom: 10px;
        color: rgb(255, 255, 255);
        margin-top: 72px;
        position: relative;
        text-align: center;
    }
    .text p {
        font-size: 13px;
        line-height: 1.5;
        color: rgb(255, 255, 255);
        font-family: Montserrat;
        text-align: center;
    }
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    /* Estilos para tablets */

    .images {
        display: flex;
        flex: 1;
        padding: 3%;
    }
    .image-section {
        display: flex;
        align-items: center;
        padding: 30px;
        padding-left: 3%;
        padding-right: 3%;
    }
    .text h2 {
        font-size: 47px;
        margin-bottom: 10px;
        color: rgb(255, 255, 255);
        margin-top: 43px;
        position: relative;
        text-align: center;
    }
    .text p {
        font-size: 20px;
        line-height: 1.5;
        color: rgb(255, 255, 255);
        font-family: Montserrat;
        text-align: center;
        padding-left: 4%;
        padding-right: 4%;
    }
  }