.elementor .card-description{/* Ocultar la descripción por defecto */
.hover-card .card-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

/* Mostrar la descripción al hacer hover sobre la card */
.hover-card:hover .card-description {
  max-height: 300px; /* ajusta según el largo de tu texto */
  opacity: 1;
  margin-top: 15px;
}

/* Opcional: efecto adicional en la card */
.hover-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}\n}