.gropsCards {
    &__card {
      border-radius: 4px;
      background-color: var(--a-blanco);
      min-height: 180px;
      transition: all 0.5s ease;
      &:hover {
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
        transform: scale(1.01);
      }
    }
} 