.section-transacoes {
  background: linear-gradient(135deg, #031B2E, #00294D);
  color: #fff;
  padding: 95px 0;
  text-align: center;
}

.section-transacoes h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 300;
}

.sub-title {
  color: #F8F8F8;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.14px;
  width: 290px;
}

.view-profile {
  color: #FFF;
  width: 100%;
  text-align: start;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  left: 15px;
  visibility: visible;
  position: absolute;
  bottom: -25px;
}


.section-transacoes h2 span {
  color: #00AEEF;
  font-weight: 700;
}

.card-inner {
  height: 100%;
  padding-left: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.cards-container {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;

  margin-top: 40px;
  width: 100%;
}

.card {
  background: linear-gradient(to right, #00000030, #d9d9d926);
  border-radius: 8px 32px 32px 8px;
  width: 600px;
  height: 410px;
  text-align: left;
  padding: 20px;
  position: relative;
  backdrop-filter: blur(37px);
  border: 1px solid #FFFFFF1A;
  transition: border 0.3s ease;
}


.card-cover {
  height: 25vw;
  width: 17vw;
  overflow: hidden;
  position: absolute;
  border-radius: 8px;
  left: -2rem;
  border: 1px solid #FFFFFF1A;
  max-width: 272px;
  max-height: 350px;
}


@media screen and (min-width: 1450px) {
  .cards-container {
    /* width: 80%; */
  }

  .card-cover {
    width: 272px;
    height: 350px;
    left: -4rem;

  }
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media screen and (max-width: 1166px) {

  .card {
    width: 560px;
  }

  .card-cover {
    right: 355px;
  }

}

.card:hover .card-cover img {
  transform: scale(1.12);
}

.card-cover img:hover {
  transform: scale(1.12);
}

.card p {
  margin: 5px 0;
}

.card .data {
  font-size: 13px;
  color: #ccc;
}

.card .empresa {
  color: #00AEEF;
  font-weight: 600;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card .descricao {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.card:has(.div-blue:hover) {
  border: 1px solid #ffffff;
}

.div-blue {
  margin-top: 15px;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all ease 0.3s;
  background: linear-gradient(108deg, #009EE2 62.83%, #00F0FD 99.01%);
  background-size: 200% 200%;
  transition: background-position 0.3s ease;
  width: 157px;
  height: 40px;
  padding-left: 16px;
}

.div-blue:hover {
  background-position: right center;
}

.card button span {
  font-size: 18px;
}

@media (max-width: 1336px) {
  .card {
    width: 478px;
    height: 338px;
  }

  .card img {
    right: 60%;
  }

  .card .descricao {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .section-transacoes {
    padding: 20px;
    text-align: start;
  }

  .section-transacoes h2 {
    font-size: 26px;
    font-weight: 400;
    text-align: start;
    width: 300px;
    align-self: baseline;
  }

  .section-transacoes h2 span {
    font-weight: 700;
  }

  .cards-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
  }

  .card {
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    height: 525px;

  }

  .card-cover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    right: 0;
    position: relative;
    margin: 0;
    left: 0;
    padding: 0;
    max-width: 100%;
    margin-bottom: 11px;
  }

  .card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }




  .card-cover img:hover {
    transform: scale(1.12);
  }

  .card-inner {
    flex-direction: column;
    padding-left: 0;
  }

  .card img {
    position: relative;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .card .descricao {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card button {
    width: 100%;
    justify-content: center;
  }
}