.carta-wrapper {
  overflow: visible;
  background: transparent;
  padding-bottom: 3rem;
}


.carta {
  width: 100%;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 1.8rem;
  border: 2px solid #32244a;
  overflow: visible; 
  transition: 0.5s ease-out;
  position: relative;
  box-shadow: none;
}

.detalles-carta {
  color: black;
  height: 100%;
  gap: .5em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.carta-button {
  transform: translate(-50%, 125%);
  width: 60%;
  border-radius: 1rem;
  border: none;
  background-color: #32244a;
  color: #fff;
  font-size: 1rem;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  opacity: 0;
  transition: 0.3s ease-out;
  cursor: pointer;
  bottom: -1.5rem;
  z-index: 10;
}

.text-title {
  font-size: 1.5em;
  font-weight: bold;
}

.carta:hover {
  border-color: #32244a;
  box-shadow: 3px 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.carta:hover .carta-button {
  transform: translate(-50%, -20%);
  opacity: 1;
}