div#trabalho-home {
   background: linear-gradient(
  90deg,
  rgba(234, 165, 198, 1) 0%,
  rgba(255, 196, 141, 1) 50%,
  rgba(234, 165, 198, 1) 100%
);
background-size: 200% 100%;
animation: gradientMove2 7s linear infinite;
}

@keyframes gradientMove2 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.trabalho-itens-pai {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.trabalho-card {
    width: 45%;
}

.efeito-trabalho {
    background: white;
    border-radius: 14px;
    padding: 40px;
    position: relative;
    margin-bottom: 5%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

}
.efeito-trabalho:hover {
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.trabalho-img {
    width: 90px;
    height: 90px;
        background: linear-gradient(90deg, #ffc48d, #eaa5c6, #ffc48d);
    background-size: 200% auto;
    animation: gradientMove 6s cubic-bezier(0.75, 0.05, 0.64, 1.46) infinite;
    border-radius: 14px;
    padding: 16px;
}
.texto-trabalho a {
        background: linear-gradient(90deg, #ffc48d, #eaa5c6, #ffc48d);
    background-size: 200% auto;
    animation: gradientMove 6s cubic-bezier(0.75, 0.05, 0.64, 1.46) infinite;
    padding: 10px 20px;
    margin-top: 7%;
    display: block;
    width: fit-content;
    min-width: 193px;
    border-radius: 15px;
    color: white;
    font-weight: 500;
    font-size: 1.6rem;
    text-align-last: center;
}
.texto-trabalho a:hover{
    color: white;
}
.trabalho-img span {
    display: block;
    width: 100%;
    height: 100%;
    background: white;
}


.texto-trabalho h4 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 3%;
}

.texto-trabalho p {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
    color: #999999;
    margin-bottom: 3%;
}

div#trabalho-home {
    padding: 3% 0;
}
.trabalho-subt p {
    font-size: 1.9rem;
    color: #212a3b;
    width: 61%;
    margin: 0px auto 0% auto;
    text-align: -webkit-center;
}
h3.trabalho1 {
    font-weight: 800;
    font-size: 4rem;
    color: #212a3b;
}
.trabalho-tt {
    place-items: anchor-center;
}

.trabalho-itens-pai {
    margin-top: 6%;
}