.simplia-casos-3d {
  padding: 3rem 1rem 2rem 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simplia-casos-3d h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  z-index: 3;
  position: relative;
}

.stage {
  position: relative;
  width: 100vw;
  max-width: 1020px;
  height: 290px;
  margin: 0 auto;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  display: block;
  z-index: 2;
  overflow: visible;
}

.card {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 240px;
  height: 180px;
  margin-left: -130px;
  transform-style: preserve-3d;
  padding: 1.5rem 1.1rem 1rem 1.3rem;
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.07);
  border: 1.2px solid rgba(255,255,255,0.11);
  box-shadow: 0 6px 30px rgba(32,0,60,0.12);
  color: #fff;
  transition: box-shadow 0.36s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0.19;
  filter: grayscale(0) blur(0.2px) brightness(1.76);
  pointer-events: none;
  transition: opacity 0.3s;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(224, 41, 132, 0.25);
  z-index: 9;
}

.card blockquote,
.card h3,
.card span {
  position: relative;
  z-index: 2;
}

.card blockquote {
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.45;
  padding-top: 0;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 0.9rem;
  color: var(--simplia-magenta);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
  align-self: center;
  width: 100%;
  min-height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card span {
  font-size: 0.69rem;
  color: var(--simplia-blue);
  font-weight: 600;
  position: absolute;
  bottom: 0.9rem;
  right: 1.2rem;
  opacity: 0.95;
  background: none;
  white-space: nowrap;
  text-align: right;
}