.homenagem {
    background-color: #F7F4FB;
    display: flex;
    flex-direction: column;
    height: 40rem;
    width: 100%;
}

.texto-h {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 5rem;
    gap: 40px;
}

.texto-h div {
    width: 45%;
}

.imgs {
    width: 50%;
    gap: 10px;
}


.imgs img {
    width: 25rem;
    height: 25rem;
    object-fit: cover;
    /* preenche o box sem distorcer, corta o excesso */
    object-position: top;
    /* mostra a parte superior da imagem */
    display: block;
    /* evita espaço embaixo da img */
    border-radius: 5%;
      box-shadow: 0 2px 10px rgba(0, 0.5, 0, 0.5);
}


/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {
  .galeria-imagens>* {
    flex: 0 0 calc((100% - (1 * 2rem)) / 2);
    max-width: calc((100% - (1 * 2rem)) / 2);
  }
}

/* Telas médias (tablets) */

@media (max-width: 480px) {

  .galeria-imagens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Telas médias (Celulares) */
@media (max-width: 490px) {

    .texto-h {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }
    
    .texto-h div {
        width: 90%;
    }
    
    .imgs img {
        width: 18rem;
        height: 18rem;
        margin-left: 35px;
    }
}