
.dgrande-acordeon {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dgrande-acordeon .acordeon-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dgrande-acordeon .image-wrapper {
  position: relative;
  overflow: hidden;
}
.dgrande-acordeon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.dgrande-acordeon .overlay-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  text-align: center;
}
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }
.dgrande-acordeon .acordeon-item.open .overlay-content {
  opacity: 1;
  transform: translateY(0);
}
.dgrande-acordeon .button {
  display: inline-block;
  margin-top: 0.5rem;
  background: #0072ce;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
}
.dgrande-acordeon .button:hover {
  background: #004e89;
}
