.card {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 16px;
  gap: 16px;
  transition: 0.2s all;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  align-items: center;
  color: #fff;
}

.card .img-container {
  width: 48px;
  height: 48px;
}

.card img {
  box-sizing: border-box;
  height: 48px;
  width: 48px;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
}

.card .card-body {
  width: 100%;
  height: 100%;
}

.card .card-body p {
  height: 100%;
  width: 100%;
}

.card:hover {
  transition: 0.2s all;
  scale: 103%;
}

.card {
  background: rgba(0, 0, 0, 0.70);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  border: 1px solid rgba(0, 0, 0, 0.23);
}


/* Titulo */

.title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}

.sheetContainer a {
  color: #fff;
}

.card2 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 16px;
  transition: 0.2s all;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: start;
  align-items: center;
  color: #fff;
  overflow: hidden;
  min-height: 180px;
}

.card2 .img-container {
  width: 100%;
  height: 180px;
  z-index: 0;
}

.card2 img {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.card2 .card-body {
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.70);
}

.card2 .card-body p {
  height: 100%;
  width: 100%;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 16px;
  padding: 16px;
}

.card2:hover {
  transition: 0.2s all;
  scale: 103%;
}

.card2 {
  /* background: rgba(0, 0, 0, 0.70); */
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  border: 1px solid rgba(0, 0, 0, 0.23);
}

@media (max-width: 680px) {
    .card2 .img-container {
      height: auto;
    }
}